mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
omap: Remove hardcoding of mmu section shift to 20
As of now the mmu section shift is hardcoded to 20 but with LPAE coming into picture this can be different. Hence replacing 20 with MMU_SECTION_SHIFT macro. Signed-off-by: Keerthy <j-keerthy@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
5052e81988
commit
c268a9bde0
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ void dram_bank_mmu_setup(int bank)
|
|||
bd_t *bd = gd->bd;
|
||||
int i;
|
||||
|
||||
u32 start = bd->bi_dram[bank].start >> 20;
|
||||
u32 size = bd->bi_dram[bank].size >> 20;
|
||||
u32 start = bd->bi_dram[bank].start >> MMU_SECTION_SHIFT;
|
||||
u32 size = bd->bi_dram[bank].size >> MMU_SECTION_SHIFT;
|
||||
u32 end = start + size;
|
||||
|
||||
debug("%s: bank: %d\n", __func__, bank);
|
||||
|
|
Loading…
Add table
Reference in a new issue