From ceb740dd22153a4aa1c3915b9122a542f5183ab0 Mon Sep 17 00:00:00 2001 From: Richard Braun Date: Thu, 2 Oct 2014 00:43:52 +0200 Subject: x86/{lapic/pic}: normalize interrupt handler names Interrupt handler functions are suffixed with _intr. --- arch/x86/machine/lapic.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/x86/machine/lapic.c') diff --git a/arch/x86/machine/lapic.c b/arch/x86/machine/lapic.c index e56155b..994aef6 100644 --- a/arch/x86/machine/lapic.c +++ b/arch/x86/machine/lapic.c @@ -324,7 +324,7 @@ lapic_ipi_broadcast(uint32_t vector) } void -lapic_intr_timer(struct trap_frame *frame) +lapic_timer_intr(struct trap_frame *frame) { (void)frame; @@ -333,7 +333,7 @@ lapic_intr_timer(struct trap_frame *frame) } void -lapic_intr_error(struct trap_frame *frame) +lapic_error_intr(struct trap_frame *frame) { uint32_t esr; @@ -345,7 +345,7 @@ lapic_intr_error(struct trap_frame *frame) } void -lapic_intr_spurious(struct trap_frame *frame) +lapic_spurious_intr(struct trap_frame *frame) { (void)frame; printk("lapic: warning: spurious interrupt\n"); -- cgit v1.2.3