summaryrefslogtreecommitdiff
path: root/Kernel/Devices
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-04 13:46:11 +0300
committerAndreas Kling <kling@serenityos.org>2022-12-28 11:53:41 +0100
commit91db482ad333459a8513c98e6488087f327f5d2d (patch)
tree711d0313bd8caa4ee2e02246d63b786a153129be /Kernel/Devices
parent5ff318cf3ac7d12470c357ba0bac8cd7ffa10e3e (diff)
downloadserenity-91db482ad333459a8513c98e6488087f327f5d2d.zip
Kernel: Reorganize Arch/x86 directory to Arch/x86_64 after i686 removal
No functional change.
Diffstat (limited to 'Kernel/Devices')
-rw-r--r--Kernel/Devices/ConsoleDevice.cpp2
-rw-r--r--Kernel/Devices/HID/HIDManagement.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Devices/ConsoleDevice.cpp b/Kernel/Devices/ConsoleDevice.cpp
index 75179e5505..92044f852b 100644
--- a/Kernel/Devices/ConsoleDevice.cpp
+++ b/Kernel/Devices/ConsoleDevice.cpp
@@ -6,7 +6,7 @@
#include <AK/Platform.h>
#if ARCH(X86_64)
-# include <Kernel/Arch/x86/common/BochsDebugOutput.h>
+# include <Kernel/Arch/x86_64/BochsDebugOutput.h>
#endif
#include <Kernel/Devices/ConsoleDevice.h>
#include <Kernel/Devices/DeviceManagement.h>
diff --git a/Kernel/Devices/HID/HIDManagement.cpp b/Kernel/Devices/HID/HIDManagement.cpp
index 0dda36abe2..56b8d57e47 100644
--- a/Kernel/Devices/HID/HIDManagement.cpp
+++ b/Kernel/Devices/HID/HIDManagement.cpp
@@ -7,7 +7,7 @@
#include <AK/Platform.h>
#include <AK/Singleton.h>
#if ARCH(X86_64)
-# include <Kernel/Arch/x86/ISABus/I8042Controller.h>
+# include <Kernel/Arch/x86_64/ISABus/I8042Controller.h>
#endif
#include <Kernel/CommandLine.h>
#include <Kernel/Devices/HID/HIDManagement.h>