1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:37:35 +00:00

Kernel: Put Raspberry Pi devices into RPi namespace

This makes it clear in the code that these drivers are specific for the
Raspberry Pi devices.
This commit is contained in:
Timon Kruiper 2022-05-29 11:12:17 +02:00 committed by Linus Groh
parent 77f24056e0
commit 63ee2781fb
16 changed files with 27 additions and 27 deletions

View file

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