Kernel/MM: Remove "Initialize MMU" message

This message was added in 95c469ca4c 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.
This commit is contained in:
Sönke Holz
2025-08-02 22:02:59 +02:00
committed by Nico Weber
parent 527fa88d43
commit 4cd9c76427

View File

@@ -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<MemoryManagerData>::initialize();
if (cpu == 0) {