diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-20 03:17:55 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-20 03:17:55 +0100 |
commit | ebfb4fdf2937bd9fc939ac85fdfc416e7fa7776d (patch) | |
tree | 8c6360ab9638ce5df7f832cc1f260151bd509139 /sys/src/9/alphapc | |
parent | ad1eefb3556354b0fdf58faa3b4f5498d99a1f23 (diff) |
kernel: convert putmmu() to uintptr for va and pa
Diffstat (limited to 'sys/src/9/alphapc')
-rw-r--r-- | sys/src/9/alphapc/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/alphapc/mmu.c b/sys/src/9/alphapc/mmu.c index c15d176d7..0e1e0bb64 100644 --- a/sys/src/9/alphapc/mmu.c +++ b/sys/src/9/alphapc/mmu.c @@ -139,7 +139,7 @@ mmunewtop(void) } void -putmmu(ulong va, ulong pa, Page *pg) +putmmu(uintptr va, uintptr pa, Page *pg) { int lvl2off; uvlong *lvl2, *pt; |