diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-05-17 18:35:14 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-05-17 18:35:14 +0200 |
commit | 5c5c1b666681cb3e8d2adbfe2ade22fe8447ffc2 (patch) | |
tree | 32d8d645db550597e0c9fde5dcda8ac8af56fc22 /sys/src/9/bcm64/dat.h | |
parent | e0c19ae048ae671883fd4d27d5f617c02020bdf5 (diff) |
bcm64: switch to 64k page size
Diffstat (limited to 'sys/src/9/bcm64/dat.h')
-rw-r--r-- | sys/src/9/bcm64/dat.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/src/9/bcm64/dat.h b/sys/src/9/bcm64/dat.h index 7a1747029..82fe13f09 100644 --- a/sys/src/9/bcm64/dat.h +++ b/sys/src/9/bcm64/dat.h @@ -115,7 +115,7 @@ struct Conf */ struct MMMU { - PTE* mmul1; /* l1 for this processor */ + PTE* mmutop; /* first level user page table */ }; /* @@ -245,8 +245,6 @@ struct Soc { /* SoC dependent configuration */ uintptr busdram; uintptr busio; uintptr armlocal; - u32int l1ptedramattrs; - u32int l2ptedramattrs; }; extern Soc soc; |