summaryrefslogtreecommitdiff
path: root/Kernel/Arch
diff options
context:
space:
mode:
authorTimon Kruiper <timonkruiper@gmail.com>2022-05-16 15:19:49 +0200
committerLinus Groh <mail@linusgroh.de>2022-06-02 13:14:12 +0100
commitd631a3daf6292f6b7f6c130978283db63b800e6e (patch)
tree0d9b59e387b0c7295f67a889d61035fe656267dd /Kernel/Arch
parenta4534678f978c7ea62b70bc8ab4bdc8f6437f90a (diff)
downloadserenity-d631a3daf6292f6b7f6c130978283db63b800e6e.zip
Kernel: Add Interrupts/IRQHandler.cpp to the aarch64 build
This requires a few stubs such that the compiler won't complain.
Diffstat (limited to 'Kernel/Arch')
-rw-r--r--Kernel/Arch/aarch64/Dummy.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Kernel/Arch/aarch64/Dummy.cpp b/Kernel/Arch/aarch64/Dummy.cpp
index 1ba7b149d8..fb09e631f2 100644
--- a/Kernel/Arch/aarch64/Dummy.cpp
+++ b/Kernel/Arch/aarch64/Dummy.cpp
@@ -146,4 +146,14 @@ u8 InterruptManagement::acquire_mapped_interrupt_number(u8)
VERIFY_NOT_REACHED();
}
+InterruptManagement& InterruptManagement::the()
+{
+ VERIFY_NOT_REACHED();
+}
+
+RefPtr<IRQController> InterruptManagement::get_responsible_irq_controller(u8)
+{
+ VERIFY_NOT_REACHED();
+}
+
}