diff options
author | Hendiadyoin1 <leon2002.la@gmail.com> | 2021-06-22 17:18:10 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-24 00:38:23 +0200 |
commit | 925be2758ec5d2bce226a5284dd8960b7bd3f09a (patch) | |
tree | 39b226443a58400dced4c722cfe089fa8de3f85c /Kernel/Interrupts/GenericInterruptHandler.h | |
parent | 553ea3036d8a3f4915c31897d9c6752fe7b71c87 (diff) | |
download | serenity-925be2758ec5d2bce226a5284dd8960b7bd3f09a.zip |
Kernel: Remove unused CPU.h includes
In most cases we did not need it at all, in other, we only needed one
header from it
Diffstat (limited to 'Kernel/Interrupts/GenericInterruptHandler.h')
-rw-r--r-- | Kernel/Interrupts/GenericInterruptHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Interrupts/GenericInterruptHandler.h b/Kernel/Interrupts/GenericInterruptHandler.h index b37c67772f..4acdc47a7f 100644 --- a/Kernel/Interrupts/GenericInterruptHandler.h +++ b/Kernel/Interrupts/GenericInterruptHandler.h @@ -9,7 +9,7 @@ #include <AK/HashTable.h> #include <AK/String.h> #include <AK/Types.h> -#include <Kernel/Arch/x86/CPU.h> +#include <Kernel/Arch/x86/RegisterState.h> namespace Kernel { |