summaryrefslogtreecommitdiff
path: root/Kernel/Arch/aarch64
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Arch/aarch64')
-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();