diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2008-05-27 16:19:09 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 03:13:00 -0400 |
commit | 9a1c61929121cbd597a5575f82711c0db8ee1778 (patch) | |
tree | eac97535a5d30ac1be4aea154b44ff77d1198170 /arch/x86/kernel/io_apic_32.c | |
parent | 35542c5ebced864776d90d83d1e255016fd4c084 (diff) |
x86: I/O APIC: fix the name of the L-APIC IRQ handler
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>
Diffstat (limited to 'arch/x86/kernel/io_apic_32.c')
-rw-r--r-- | arch/x86/kernel/io_apic_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/io_apic_32.c b/arch/x86/kernel/io_apic_32.c index 7c7d88ebb96..7064500f00f 100644 --- a/arch/x86/kernel/io_apic_32.c +++ b/arch/x86/kernel/io_apic_32.c | |||
@@ -2037,7 +2037,7 @@ static void unmask_lapic_irq (unsigned int irq) | |||
2037 | } | 2037 | } |
2038 | 2038 | ||
2039 | static struct irq_chip lapic_chip __read_mostly = { | 2039 | static struct irq_chip lapic_chip __read_mostly = { |
2040 | .name = "local-APIC-edge", | 2040 | .name = "local-APIC", |
2041 | .mask = mask_lapic_irq, | 2041 | .mask = mask_lapic_irq, |
2042 | .unmask = unmask_lapic_irq, | 2042 | .unmask = unmask_lapic_irq, |
2043 | .eoi = ack_apic, | 2043 | .eoi = ack_apic, |