summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 20:02:01 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 20:02:01 +0200
commit736092a0876b115c4131ea114fda81eb52bc3d2e (patch)
treed78be578fd22d2299edcc8ed343c1a505e338803 /Kernel/FileSystem
parent5bce004d84da43ee6453fc80b1695e8126d53080 (diff)
downloadserenity-736092a0876b115c4131ea114fda81eb52bc3d2e.zip
Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h}
There's a ton of work that would need to be done before we could spin up on another architecture, but let's at least try to separate things out a bit.
Diffstat (limited to 'Kernel/FileSystem')
-rw-r--r--Kernel/FileSystem/DiskBackedFileSystem.cpp2
-rw-r--r--Kernel/FileSystem/ProcFS.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/FileSystem/DiskBackedFileSystem.cpp b/Kernel/FileSystem/DiskBackedFileSystem.cpp
index fe241e99d3..413e4931ed 100644
--- a/Kernel/FileSystem/DiskBackedFileSystem.cpp
+++ b/Kernel/FileSystem/DiskBackedFileSystem.cpp
@@ -1,6 +1,6 @@
#include "DiskBackedFileSystem.h"
-#include "i386.h"
#include <AK/InlineLRUCache.h>
+#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/Process.h>
//#define DBFS_DEBUG
diff --git a/Kernel/FileSystem/ProcFS.cpp b/Kernel/FileSystem/ProcFS.cpp
index c7fdff4916..286ebe8175 100644
--- a/Kernel/FileSystem/ProcFS.cpp
+++ b/Kernel/FileSystem/ProcFS.cpp
@@ -4,8 +4,8 @@
#include "Process.h"
#include "Scheduler.h"
#include "StdLib.h"
-#include "i386.h"
#include <AK/StringBuilder.h>
+#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/FileSystem/Custody.h>
#include <Kernel/FileSystem/FileDescription.h>
#include <Kernel/FileSystem/VirtualFileSystem.h>