diff options
author | Liav A <liavalb@gmail.com> | 2022-04-22 10:31:11 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-06-17 11:01:27 +0200 |
commit | 7310a9a641e2d899b8091587d22818a6b5f9e882 (patch) | |
tree | 310e78212a17beb5823f94d0e72498357c8ac846 /Kernel | |
parent | 99bac4f34faf8ea3615ef684e7b73c954f12c226 (diff) | |
download | serenity-7310a9a641e2d899b8091587d22818a6b5f9e882.zip |
Kernel/Interrupts: Add missing include for IRQController header file
This is necessary for the next commit in the patch, otherwise this can't
be compiled. It seems like this was a hidden issue that is discovered
now only by changing includes in a mass-scale.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Arch/x86/IRQController.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Arch/x86/IRQController.h b/Kernel/Arch/x86/IRQController.h index 43d12f561c..82afa739b4 100644 --- a/Kernel/Arch/x86/IRQController.h +++ b/Kernel/Arch/x86/IRQController.h @@ -8,6 +8,7 @@ #include <AK/RefCounted.h> #include <AK/Types.h> +#include <Kernel/Interrupts/GenericInterruptHandler.h> namespace Kernel { |