summaryrefslogtreecommitdiff
path: root/sys/src/9/zynq/mmu.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-06-15 22:32:15 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2015-06-15 22:32:15 +0200
commit584caf6d1c6b44ce2f19c95581b7c6f134e2ba59 (patch)
tree40c1404a4dff292d2954933fffb0aea1d1813ac4 /sys/src/9/zynq/mmu.c
parent13a79fbb72ca203efec5be16e32e4d7a91620281 (diff)
zynq: remove unused PTE typedef
all the mmu code uses ulong, so get rid of the typeded.
Diffstat (limited to 'sys/src/9/zynq/mmu.c')
-rw-r--r--sys/src/9/zynq/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/zynq/mmu.c b/sys/src/9/zynq/mmu.c
index 14f915759..d9d9e7cc1 100644
--- a/sys/src/9/zynq/mmu.c
+++ b/sys/src/9/zynq/mmu.c
@@ -141,7 +141,7 @@ putmmu(uintptr va, uintptr pa, Page *pg)
Page *p;
ulong *e;
ulong *l2;
- PTE old;
+ ulong old;
uintptr l2p;
int s;