diff options
author | James Mintram <me@jamesrm.com> | 2021-10-14 00:07:37 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-14 01:23:08 +0100 |
commit | 545ce5b5957df8f21de574e15453a711770262f0 (patch) | |
tree | 2c59bbef8056d9678b46202ec7c085f069bc7e29 /Kernel/Random.cpp | |
parent | 23676bee1f95ab3d441a44b4601670ab7fcabf0d (diff) | |
download | serenity-545ce5b5957df8f21de574e15453a711770262f0.zip |
Kernel: Add per platform Processor.h headers
The platform independent Processor.h file includes the shared processor
code and includes the specific platform header file.
All references to the Arch/x86/Processor.h file have been replaced with
a reference to Arch/Processor.h.
Diffstat (limited to 'Kernel/Random.cpp')
-rw-r--r-- | Kernel/Random.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Random.cpp b/Kernel/Random.cpp index 2933e9d595..1889245991 100644 --- a/Kernel/Random.cpp +++ b/Kernel/Random.cpp @@ -6,7 +6,7 @@ */ #include <AK/Singleton.h> -#include <Kernel/Arch/x86/Processor.h> +#include <Kernel/Arch/Processor.h> #include <Kernel/Devices/RandomDevice.h> #include <Kernel/Random.h> #include <Kernel/Sections.h> |