zynq: remove unused PTE typedef

all the mmu code uses ulong, so get rid of the typeded.
This commit is contained in:
cinap_lenrek 2015-06-15 22:32:15 +02:00
parent 13a79fbb72
commit 584caf6d1c
2 changed files with 1 additions and 2 deletions

View file

@ -11,7 +11,6 @@ typedef struct Notsave Notsave;
typedef struct Page Page; typedef struct Page Page;
typedef struct Proc Proc; typedef struct Proc Proc;
typedef struct PMMU PMMU; typedef struct PMMU PMMU;
typedef u32int PTE;
typedef struct Ureg Ureg; typedef struct Ureg Ureg;
typedef struct ISAConf ISAConf; typedef struct ISAConf ISAConf;
typedef uvlong Tval; typedef uvlong Tval;

View file

@ -141,7 +141,7 @@ putmmu(uintptr va, uintptr pa, Page *pg)
Page *p; Page *p;
ulong *e; ulong *e;
ulong *l2; ulong *l2;
PTE old; ulong old;
uintptr l2p; uintptr l2p;
int s; int s;