mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-09 19:25:10 +01:00
mmu: Pass missing tbl argument to mmu_map_page in mmu_map_page_range (#28)
This commit is contained in:
parent
a798df5a2c
commit
3020faf8a2
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user