diff options
Diffstat (limited to 'src/kernel/interrupts/isr.c')
-rw-r--r-- | src/kernel/interrupts/isr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/interrupts/isr.c b/src/kernel/interrupts/isr.c index c2d58ef..2837239 100644 --- a/src/kernel/interrupts/isr.c +++ b/src/kernel/interrupts/isr.c @@ -57,7 +57,7 @@ void isr_install_handler(size_t isr, irq_handler_t handler) isr_routines[isr] = handler; } -// Removes the custom IRQ handler +// Remove the custom IRQ handler void isr_uninstall_handler(size_t isr) { isr_routines[isr] = 0; |