Kernel: Remove Prekernel namespace in the aarch64 Kernel

Now that we merged all the Prekernel files into the Kernel files, we can
get rid of the Prekernel namespace as well.
This commit is contained in:
Timon Kruiper 2022-05-10 00:27:23 +02:00 committed by Linus Groh
commit 1f3977b303
Notes: sideshowbarker 2024-07-17 10:56:04 +09:00
23 changed files with 55 additions and 57 deletions

View file

@ -14,7 +14,7 @@ void kernelputstr(char const* characters, size_t length)
if (!characters)
return;
auto& uart = Prekernel::UART::the();
auto& uart = Kernel::UART::the();
uart.print_str(characters, length);
}
@ -23,7 +23,7 @@ void kernelcriticalputstr(char const* characters, size_t length)
if (!characters)
return;
auto& uart = Prekernel::UART::the();
auto& uart = Kernel::UART::the();
uart.print_str(characters, length);
}
@ -32,6 +32,6 @@ void kernelearlyputstr(char const* characters, size_t length)
if (!characters)
return;
auto& uart = Prekernel::UART::the();
auto& uart = Kernel::UART::the();
uart.print_str(characters, length);
}