diff options
Diffstat (limited to 'Kernel/Arch')
-rw-r--r-- | Kernel/Arch/PC/BIOS.cpp | 4 | ||||
-rw-r--r-- | Kernel/Arch/PC/BIOS.h | 4 | ||||
-rw-r--r-- | Kernel/Arch/x86/common/Processor.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Kernel/Arch/PC/BIOS.cpp b/Kernel/Arch/PC/BIOS.cpp index 6a03b6d126..784e773df3 100644 --- a/Kernel/Arch/PC/BIOS.cpp +++ b/Kernel/Arch/PC/BIOS.cpp @@ -9,9 +9,9 @@ #include <Kernel/Arch/PC/BIOS.h> #include <Kernel/FileSystem/FileDescription.h> #include <Kernel/KBufferBuilder.h> +#include <Kernel/Memory/MemoryManager.h> +#include <Kernel/Memory/TypedMapping.h> #include <Kernel/Sections.h> -#include <Kernel/VM/MemoryManager.h> -#include <Kernel/VM/TypedMapping.h> namespace Kernel { diff --git a/Kernel/Arch/PC/BIOS.h b/Kernel/Arch/PC/BIOS.h index e7e2f37afb..54ad1f1aa0 100644 --- a/Kernel/Arch/PC/BIOS.h +++ b/Kernel/Arch/PC/BIOS.h @@ -11,9 +11,9 @@ #include <AK/Vector.h> #include <Kernel/FileSystem/SysFS.h> #include <Kernel/KBuffer.h> +#include <Kernel/Memory/MappedROM.h> +#include <Kernel/Memory/Region.h> #include <Kernel/PhysicalAddress.h> -#include <Kernel/VM/MappedROM.h> -#include <Kernel/VM/Region.h> #include <Kernel/VirtualAddress.h> namespace Kernel::SMBIOS { diff --git a/Kernel/Arch/x86/common/Processor.cpp b/Kernel/Arch/x86/common/Processor.cpp index 8f59b97dbb..e626d4d211 100644 --- a/Kernel/Arch/x86/common/Processor.cpp +++ b/Kernel/Arch/x86/common/Processor.cpp @@ -10,11 +10,11 @@ #include <AK/Types.h> #include <Kernel/Interrupts/APIC.h> +#include <Kernel/Memory/ProcessPagingScope.h> #include <Kernel/Process.h> #include <Kernel/Sections.h> #include <Kernel/StdLib.h> #include <Kernel/Thread.h> -#include <Kernel/VM/ProcessPagingScope.h> #include <Kernel/Arch/x86/CPUID.h> #include <Kernel/Arch/x86/Interrupts.h> |