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/AtomicEdgeAction.h | |
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/AtomicEdgeAction.h')
-rw-r--r-- | Kernel/AtomicEdgeAction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/AtomicEdgeAction.h b/Kernel/AtomicEdgeAction.h index 6626b8e00a..c80adcaa1d 100644 --- a/Kernel/AtomicEdgeAction.h +++ b/Kernel/AtomicEdgeAction.h @@ -7,7 +7,7 @@ #pragma once #include <AK/Atomic.h> -#include <Kernel/Arch/x86/Processor.h> +#include <Kernel/Arch/Processor.h> namespace Kernel { |