diff options
author | Timon Kruiper <timonkruiper@gmail.com> | 2022-10-05 19:27:36 +0200 |
---|---|---|
committer | Gunnar Beutner <gunnar@beutner.name> | 2022-10-17 20:11:31 +0200 |
commit | 9827c11d8be73baa8359293b0244dd028c3701f5 (patch) | |
tree | 6cf94d81ec83aae8b7fad05b038b12e425904930 /Kernel/Interrupts/IRQHandler.cpp | |
parent | 8b5b42f667527fe9d304cf597907897cce4a3d32 (diff) | |
download | serenity-9827c11d8be73baa8359293b0244dd028c3701f5.zip |
Kernel: Move InterruptDisabler out of Arch directory
The code in this file is not architecture specific, so it can be moved
to the base Kernel directory.
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 35893322ce..8dadec145e 100644 --- a/Kernel/Interrupts/IRQHandler.cpp +++ b/Kernel/Interrupts/IRQHandler.cpp @@ -4,9 +4,9 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <Kernel/Arch/InterruptDisabler.h> #include <Kernel/Arch/InterruptManagement.h> #include <Kernel/Debug.h> +#include <Kernel/InterruptDisabler.h> #include <Kernel/Interrupts/IRQHandler.h> namespace Kernel { |