From 6fb65b9dfe49b4e58c2ba331fd3bf286f64f1cf9 Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Sat, 6 Sep 2014 17:21:17 +0200 Subject: [PATCH] ARM: remove section handling TODO; no need for it We will never use sections anyway.. --- src/system/boot/arch/arm/arch_mmu.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/system/boot/arch/arm/arch_mmu.cpp b/src/system/boot/arch/arm/arch_mmu.cpp index 758a1f352c..f44873e3cb 100644 --- a/src/system/boot/arch/arm/arch_mmu.cpp +++ b/src/system/boot/arch/arm/arch_mmu.cpp @@ -273,10 +273,6 @@ get_next_page_table(uint32 type) size = ARM_MMU_L2_FINE_TABLE_SIZE; entryCount = ARM_MMU_L2_FINE_ENTRY_COUNT; break; - case ARM_MMU_L1_TYPE_SECTION: - // TODO: Figure out parameters for section types. - size = 16384; - break; default: panic("asked for unknown page table type: %#" B_PRIx32 "\n", type); return NULL;