Skip to content

Commit

Permalink
x86: I/O APIC: fix the name of the L-APIC IRQ handler
Browse files Browse the repository at this point in the history
The local APIC interrupt handler gets registered with
set_irq_chip_and_handler_name(), which results in
"local-APIC-edge-fasteoi" reported as the name of the handler.  Fix by
removing the type of the handler left over from before the generic
handlers were introduced.

The 64-bit variation should get fixed with the upcoming merge.

NB It should really use the "edge" handler and not the "fasteoi" one,
but that's a separate issue.

Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Maciej W. Rozycki authored and Ingo Molnar committed Jul 8, 2008
1 parent 35542c5 commit 9a1c619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/io_apic_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -2037,7 +2037,7 @@ static void unmask_lapic_irq (unsigned int irq)
}

static struct irq_chip lapic_chip __read_mostly = {
.name = "local-APIC-edge",
.name = "local-APIC",
.mask = mask_lapic_irq,
.unmask = unmask_lapic_irq,
.eoi = ack_apic,
Expand Down

0 comments on commit 9a1c619

Please sign in to comment.