Kernel: Move CMOS code to the Kernel namespace

This commit is contained in:
Liav A 2022-09-02 11:26:07 +03:00 committed by Linus Groh
parent 84fbab6803
commit e740d959df
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@
#include <Kernel/Arch/x86/IO.h>
#include <Kernel/CMOS.h>
namespace CMOS {
namespace Kernel::CMOS {
u8 read(u8 index)
{

View file

@ -8,7 +8,7 @@
#include <AK/Types.h>
namespace CMOS {
namespace Kernel::CMOS {
u8 read(u8 index);
void write(u8 index, u8 data);