summaryrefslogtreecommitdiff
path: root/Kernel/Random.cpp
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/Random.cpp
parent5ff318cf3ac7d12470c357ba0bac8cd7ffa10e3e (diff)
downloadserenity-91db482ad333459a8513c98e6488087f327f5d2d.zip
Kernel: Reorganize Arch/x86 directory to Arch/x86_64 after i686 removal
No functional change.
Diffstat (limited to 'Kernel/Random.cpp')
-rw-r--r--Kernel/Random.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Random.cpp b/Kernel/Random.cpp
index 65577cd63f..e49678a0f3 100644
--- a/Kernel/Random.cpp
+++ b/Kernel/Random.cpp
@@ -8,8 +8,8 @@
#include <AK/Singleton.h>
#include <Kernel/Arch/Processor.h>
#if ARCH(X86_64)
-# include <Kernel/Arch/x86/Time/HPET.h>
-# include <Kernel/Arch/x86/Time/RTC.h>
+# include <Kernel/Arch/x86_64/Time/HPET.h>
+# include <Kernel/Arch/x86_64/Time/RTC.h>
#endif
#include <Kernel/Devices/RandomDevice.h>
#include <Kernel/Random.h>