mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
Kernel: Move Aarch64 MMU debug message into memory manager initializer
Doing so unifies startup debug messages visually.
This commit is contained in:
parent
e1c50b83e1
commit
95c469ca4c
Notes:
sideshowbarker
2024-07-19 16:57:39 +09:00
Author: https://github.com/konradekk Commit: https://github.com/SerenityOS/serenity/commit/95c469ca4c3 Pull-request: https://github.com/SerenityOS/serenity/pull/17087 Reviewed-by: https://github.com/FireFox317
2 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,6 @@ extern "C" [[noreturn]] void init()
|
|||
|
||||
dmesgln("Starting SerenityOS...");
|
||||
|
||||
dmesgln("Initialize MMU");
|
||||
Memory::MemoryManager::initialize(0);
|
||||
DeviceManagement::initialize();
|
||||
SysFSComponentRegistry::initialize();
|
||||
|
|
|
@ -651,6 +651,7 @@ 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) {
|
||||
|
|
Loading…
Reference in a new issue