summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
diff options
context:
space:
mode:
authorHendiadyoin1 <leon2002.la@gmail.com>2021-03-07 21:28:28 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-21 09:35:23 +0100
commit0d934fc9917f4f788c7579d42a736a78aeaddde8 (patch)
tree76a924c3d3604e8d652e888fc5744a7740444544 /Kernel/FileSystem
parent5a8cc0748572097c310baea348a416dd95a3acbc (diff)
downloadserenity-0d934fc9917f4f788c7579d42a736a78aeaddde8.zip
Kernel::CPU: Move headers into common directory
Alot of code is shared between i386/i686/x86 and x86_64 and a lot probably will be used for compatability modes. So we start by moving the headers into one Directory. We will probalby be able to move some cpp files aswell.
Diffstat (limited to 'Kernel/FileSystem')
-rw-r--r--Kernel/FileSystem/ProcFS.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/FileSystem/ProcFS.cpp b/Kernel/FileSystem/ProcFS.cpp
index 38b055983d..a8cdfc5aa2 100644
--- a/Kernel/FileSystem/ProcFS.cpp
+++ b/Kernel/FileSystem/ProcFS.cpp
@@ -29,8 +29,8 @@
#include <AK/JsonObjectSerializer.h>
#include <AK/JsonValue.h>
#include <AK/ScopeGuard.h>
-#include <Kernel/Arch/i386/CPU.h>
-#include <Kernel/Arch/i386/ProcessorInfo.h>
+#include <Kernel/Arch/x86/CPU.h>
+#include <Kernel/Arch/x86/ProcessorInfo.h>
#include <Kernel/CommandLine.h>
#include <Kernel/Console.h>
#include <Kernel/DMI.h>