Skip to content

Commit e740d95

Browse files
supercomputer7linusg
authored andcommitted
Kernel: Move CMOS code to the Kernel namespace
1 parent 84fbab6 commit e740d95

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Kernel/CMOS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <Kernel/Arch/x86/IO.h>
88
#include <Kernel/CMOS.h>
99

10-
namespace CMOS {
10+
namespace Kernel::CMOS {
1111

1212
u8 read(u8 index)
1313
{

Kernel/CMOS.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <AK/Types.h>
1010

11-
namespace CMOS {
11+
namespace Kernel::CMOS {
1212

1313
u8 read(u8 index);
1414
void write(u8 index, u8 data);

0 commit comments

Comments
 (0)