[PATCH v2 18/28] ARM: mmu: Use PAGE_SIZE instead of magic right shift by 12
Andrey Smirnov
andrew.smirnov at gmail.com
Wed May 16 13:00:26 PDT 2018
Signed-off-by: Andrey Smirnov <andrew.smirnov at gmail.com>
---
arch/arm/cpu/mmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/cpu/mmu.c b/arch/arm/cpu/mmu.c
index d70516f9c..314867282 100644
--- a/arch/arm/cpu/mmu.c
+++ b/arch/arm/cpu/mmu.c
@@ -215,7 +215,7 @@ static int arm_mmu_remap_sdram(struct memory_bank *bank)
unsigned long phys = (unsigned long)bank->start;
unsigned long ttb_start = pgd_index(phys);
unsigned long ttb_end = ttb_start + pgd_index(bank->size);
- unsigned long num_ptes = bank->size >> 12;
+ unsigned long num_ptes = bank->size / PAGE_SIZE;
int i, pte;
u32 *ptes;
--
2.17.0
More information about the barebox
mailing list