From 705802d749c3e3596d9c7f8bf51bd0e570be27db Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Feb 2018 07:32:23 -0500 Subject: [PATCH] mmu: Fix call to non-existent mmu_unmap_page_range function in mmio_unmap_all_devices --- exosphere/mmu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exosphere/mmu.h b/exosphere/mmu.h index 0a2274600..84bb66187 100644 --- a/exosphere/mmu.h +++ b/exosphere/mmu.h @@ -250,7 +250,7 @@ static inline void mmio_map_all_devices(uintptr_t *mmu_l3_tbl) { static inline void mmio_unmap_all_devices(uintptr_t *mmu_l3_tbl) { for(size_t i = 0, offset = 0; i < sizeof(devices) / sizeof(devices[0]); i++) { - mmu_unmap_page_range(mmu_l3_tbl, MMIO_BASE + offset, devices[i].pa, devices[i].size); + mmu_unmap_range(3, mmu_l3_tbl, MMIO_BASE + offset, devices[i].size); offset += devices[i].size; offset += 0x1000; /* insert guard page */