dma_transfer - change dest_ptr to type uintptr_t - fixes 64bit interpreter
according to aliaspider
This commit is contained in:
parent
c40748197f
commit
e83651639f
1 changed files with 1 additions and 1 deletions
|
@ -2949,7 +2949,7 @@ cpu_alert_type dma_transfer(dma_transfer_type *dma)
|
||||||
u32 length = dma->length;
|
u32 length = dma->length;
|
||||||
u32 read_value;
|
u32 read_value;
|
||||||
u32 src_ptr = dma->source_address;
|
u32 src_ptr = dma->source_address;
|
||||||
u32 dest_ptr = dma->dest_address;
|
uintptr_t dest_ptr = dma->dest_address;
|
||||||
cpu_alert_type return_value = CPU_ALERT_NONE;
|
cpu_alert_type return_value = CPU_ALERT_NONE;
|
||||||
|
|
||||||
// Technically this should be done for source and destination, but
|
// Technically this should be done for source and destination, but
|
||||||
|
|
Loading…
Add table
Reference in a new issue