summaryrefslogtreecommitdiff
path: root/Kernel/Arch/aarch64/Interrupts.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-11-18 21:39:49 +0100
committerAndreas Kling <kling@serenityos.org>2022-11-19 15:39:30 +0100
commit9b3db63e142ebbd26281a9e7173af3821c3fad19 (patch)
treef9f7195bcbf9ee9a8cf222b09e45208a9b5025f4 /Kernel/Arch/aarch64/Interrupts.cpp
parent8a5d2be617a82c93cfafa6c714dff67ab5ff0f7b (diff)
downloadserenity-9b3db63e142ebbd26281a9e7173af3821c3fad19.zip
Kernel: Rename GenericInterruptHandler "invoking count" to "call count"
Diffstat (limited to 'Kernel/Arch/aarch64/Interrupts.cpp')
-rw-r--r--Kernel/Arch/aarch64/Interrupts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Arch/aarch64/Interrupts.cpp b/Kernel/Arch/aarch64/Interrupts.cpp
index 0a0a82f546..8a49bfb120 100644
--- a/Kernel/Arch/aarch64/Interrupts.cpp
+++ b/Kernel/Arch/aarch64/Interrupts.cpp
@@ -37,7 +37,7 @@ extern "C" void handle_interrupt(TrapFrame const* const)
auto* handler = s_interrupt_handlers[irq];
VERIFY(handler);
- handler->increment_invoking_counter();
+ handler->increment_call_count();
handler->handle_interrupt(regs);
handler->eoi();