mmu: Pass missing tbl argument to mmu_map_page in mmu_map_page_range

This commit is contained in:
Lioncash 2018-02-22 21:26:13 -05:00
parent a798df5a2c
commit c1d57dea4d
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -158,7 +158,7 @@ static inline void mmu_map_block_range(unsigned int level, uintptr_t *tbl, uintp
static inline void mmu_map_page_range(uintptr_t *tbl, uintptr_t base_addr, uintptr_t phys_addr, size_t size, uint64_t attrs) {
size = (size >> MMU_Lx_SHIFT(3)) << MMU_Lx_SHIFT(3);
for(size_t offset = 0; offset < size; offset += MMU_Lx_SHIFT(3)) {
mmu_map_page(base_addr + offset, phys_addr + offset, attrs);
mmu_map_page(tbl, base_addr + offset, phys_addr + offset, attrs);
}
}