zynq: remove unused PTE typedef
all the mmu code uses ulong, so get rid of the typeded.
This commit is contained in:
parent
13a79fbb72
commit
584caf6d1c
2 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue