diff --git a/src/system/boot/arch/arm/arch_mmu.cpp b/src/system/boot/arch/arm/arch_mmu.cpp index d49de968cd..7da9a269e6 100644 --- a/src/system/boot/arch/arm/arch_mmu.cpp +++ b/src/system/boot/arch/arm/arch_mmu.cpp @@ -409,9 +409,7 @@ fdt_map_memory_ranges(const char* path, bool physical = false) return B_ERROR; } } else { - if (mmu_map_identity(base, base + size, ARM_MMU_L2_FLAG_B)) { - dprintf("cannot identity map memory range!"); - return B_ERROR; + mmu_map_identity(base, base + size, ARM_MMU_L2_FLAG_B); } }