diff options
author | Timon Kruiper <timonkruiper@gmail.com> | 2022-05-16 14:42:49 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-02 13:14:12 +0100 |
commit | a4534678f978c7ea62b70bc8ab4bdc8f6437f90a (patch) | |
tree | 05d79a605c96f8bf8ab9afc1c87c464f78e8ca34 /Kernel/Interrupts/IRQHandler.cpp | |
parent | ea9cf8b6ab6a3941ecb4727723e8e38fbd6b4bb8 (diff) | |
download | serenity-a4534678f978c7ea62b70bc8ab4bdc8f6437f90a.zip |
Kernel: Implement InterruptDisabler using generic Processor functions
Now that the code does not use architectural specific code, it is moved
to the generic Arch directory and the paths are modified accordingly.
Diffstat (limited to 'Kernel/Interrupts/IRQHandler.cpp')
-rw-r--r-- | Kernel/Interrupts/IRQHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Interrupts/IRQHandler.cpp b/Kernel/Interrupts/IRQHandler.cpp index d73ccc94cd..86e53a3404 100644 --- a/Kernel/Interrupts/IRQHandler.cpp +++ b/Kernel/Interrupts/IRQHandler.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <Kernel/Arch/x86/InterruptDisabler.h> +#include <Kernel/Arch/InterruptDisabler.h> #include <Kernel/Debug.h> #include <Kernel/Interrupts/IRQHandler.h> #include <Kernel/Interrupts/InterruptManagement.h> |