diff options
author | Hendiadyoin1 <leon2002.la@gmail.com> | 2021-06-21 17:34:09 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-24 00:38:23 +0200 |
commit | 7ca3d413f7ec0e0ef83b20c2473d73c747a9b330 (patch) | |
tree | 776412b2cbee270195aa515f71ac42da1b2090d8 /Kernel/Panic.cpp | |
parent | 37253ebcae6a9e172903ea1b9fae19c42055a53b (diff) | |
download | serenity-7ca3d413f7ec0e0ef83b20c2473d73c747a9b330.zip |
Kernel: Pull apart CPU.h
This does not add any functional changes
Diffstat (limited to 'Kernel/Panic.cpp')
-rw-r--r-- | Kernel/Panic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Panic.cpp b/Kernel/Panic.cpp index 95593b58e9..d1cb615973 100644 --- a/Kernel/Panic.cpp +++ b/Kernel/Panic.cpp @@ -5,7 +5,7 @@ */ #include <AK/Format.h> -#include <Kernel/Arch/x86/CPU.h> +#include <Kernel/Arch/x86/Processor.h> #include <Kernel/KSyms.h> #include <Kernel/Panic.h> |