diff options
author | Liav A <liavalb@gmail.com> | 2022-09-02 11:35:12 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-09-20 18:43:05 +0100 |
commit | d5ee03ef5b30a269c775d7093a71468153a1d141 (patch) | |
tree | 0f47b29ed92cc368d0513792a4bc98cb942f0460 /Kernel/Memory/MemoryManager.cpp | |
parent | e740d959dfc08f03d47e8890b7f652fe00c3537a (diff) | |
download | serenity-d5ee03ef5b30a269c775d7093a71468153a1d141.zip |
Kernel/x86: Move RTC and CMOS code to x86 arch-specific subdirectory
The RTC and CMOS are currently only supported for x86 platforms and use
specific x86 instructions to produce only certain x86 plaform operations
and results, therefore, we move them to the Arch/x86 specific directory.
Diffstat (limited to 'Kernel/Memory/MemoryManager.cpp')
-rw-r--r-- | Kernel/Memory/MemoryManager.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Memory/MemoryManager.cpp b/Kernel/Memory/MemoryManager.cpp index 72e7e4c665..8035aee7df 100644 --- a/Kernel/Memory/MemoryManager.cpp +++ b/Kernel/Memory/MemoryManager.cpp @@ -14,7 +14,6 @@ #include <Kernel/Arch/PageFault.h> #include <Kernel/Arch/RegisterState.h> #include <Kernel/BootInfo.h> -#include <Kernel/CMOS.h> #include <Kernel/FileSystem/Inode.h> #include <Kernel/Heap/kmalloc.h> #include <Kernel/KSyms.h> |