summaryrefslogtreecommitdiff
path: root/Kernel/Time
diff options
context:
space:
mode:
authorTimon Kruiper <timonkruiper@gmail.com>2022-05-30 09:04:37 +0200
committerLinus Groh <mail@linusgroh.de>2022-06-02 13:14:12 +0100
commitf085903f62e07f80ba345d26a63e34fbd9f82235 (patch)
tree85f617657af94fe44b7cffac82cb6519913e0b1e /Kernel/Time
parent63ee2781fb89f97e370ce56f5a6634c60c463dea (diff)
downloadserenity-f085903f62e07f80ba345d26a63e34fbd9f82235.zip
Kernel: Move IRQController and InterruptManagement to Arch directory
These 2 classes currently contain much code that is x86(_64) specific. Move them to the architecture specific directory. This also allows for a simpler implementation for aarch64.
Diffstat (limited to 'Kernel/Time')
-rw-r--r--Kernel/Time/HPET.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Time/HPET.cpp b/Kernel/Time/HPET.cpp
index 231ce1065c..8493e40bb1 100644
--- a/Kernel/Time/HPET.cpp
+++ b/Kernel/Time/HPET.cpp
@@ -7,7 +7,6 @@
#include <AK/StringView.h>
#include <Kernel/Debug.h>
#include <Kernel/Firmware/ACPI/Parser.h>
-#include <Kernel/Interrupts/InterruptManagement.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/Memory/TypedMapping.h>
#include <Kernel/Sections.h>