summaryrefslogtreecommitdiff
path: root/Kernel/Interrupts/IRQHandler.cpp
diff options
context:
space:
mode:
authorTimon Kruiper <timonkruiper@gmail.com>2022-10-05 19:27:36 +0200
committerGunnar Beutner <gunnar@beutner.name>2022-10-17 20:11:31 +0200
commit9827c11d8be73baa8359293b0244dd028c3701f5 (patch)
tree6cf94d81ec83aae8b7fad05b038b12e425904930 /Kernel/Interrupts/IRQHandler.cpp
parent8b5b42f667527fe9d304cf597907897cce4a3d32 (diff)
downloadserenity-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.cpp2
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 {