diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-12-05 17:01:24 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-12-05 17:01:24 +0100 |
commit | abcc56afef59bfc98cff48c800735746ff04e486 (patch) | |
tree | f402a415f667f77d30039ad80d39602295e03cbf /sys/src/9/pc/dma.c | |
parent | 178a9d12c6ead437a85490764e9a5d92e1016d5d (diff) |
pc/dma, pc/sdide: use uintptr for physical address instead of ulong
Diffstat (limited to 'sys/src/9/pc/dma.c')
-rw-r--r-- | sys/src/9/pc/dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/dma.c b/sys/src/9/pc/dma.c index 1b07b4f98..928f7372b 100644 --- a/sys/src/9/pc/dma.c +++ b/sys/src/9/pc/dma.c @@ -183,7 +183,7 @@ long dmasetup(int chan, void *va, long len, int flags) { DMA *dp; - ulong pa; + uintptr pa; uchar mode; DMAxfer *xp; |