From 4cd9c76427d95482dc0b77c829f2bcbf159daa79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Sat, 2 Aug 2025 22:02:59 +0200 Subject: [PATCH] Kernel/MM: Remove "Initialize MMU" message This message was added in 95c469ca4c3 so the startup debug messages were the same as on AArch64. However, this message doesn't really make sense, as the MMU is already initialized. It also doesn't match the style of most other startup messages. I don't think this message is necessary, so simply remove it. --- Kernel/Memory/MemoryManager.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Kernel/Memory/MemoryManager.cpp b/Kernel/Memory/MemoryManager.cpp index f156ec51dc3..4529151dfdd 100644 --- a/Kernel/Memory/MemoryManager.cpp +++ b/Kernel/Memory/MemoryManager.cpp @@ -1047,7 +1047,6 @@ void MemoryManager::release_pte(PageDirectory& page_directory, VirtualAddress va UNMAP_AFTER_INIT void MemoryManager::initialize(u32 cpu) { - dmesgln("Initialize MMU"); ProcessorSpecific::initialize(); if (cpu == 0) {