2006-12-06 11:56:36

by Maciej W. Rozycki

[permalink] [raw]
Subject: [PATCH 2.6.19] i386/io_apic: Fix a typo in an IRQ handler name

The "fasteoi" IRQ handler is named "fasteio" incorrectly. This is a fix.

Signed-off-by: Maciej W. Rozycki <[email protected]>
---
It should be obvious.

Please apply.

Maciej

patch-mips-2.6.19-rc2-20061023-fasteoi-0
diff -up --recursive --new-file linux-mips-2.6.19-rc2-20061023.macro/arch/i386/kernel/io_apic.c linux-mips-2.6.19-rc2-20061023/arch/i386/kernel/io_apic.c
--- linux-mips-2.6.19-rc2-20061023.macro/arch/i386/kernel/io_apic.c 2006-10-19 04:56:53.000000000 +0000
+++ linux-mips-2.6.19-rc2-20061023/arch/i386/kernel/io_apic.c 2006-12-06 00:10:05.000000000 +0000
@@ -2236,7 +2236,7 @@ static inline void check_timer(void)

disable_8259A_irq(0);
set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
- "fasteio");
+ "fasteoi");
apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
enable_8259A_irq(0);


2006-12-07 13:39:39

by Ingo Molnar

[permalink] [raw]
Subject: Re: [PATCH 2.6.19] i386/io_apic: Fix a typo in an IRQ handler name

On Wed, 2006-12-06 at 11:56 +0000, Maciej W. Rozycki wrote:
> The "fasteoi" IRQ handler is named "fasteio" incorrectly. This is a
> fix.
>
> Signed-off-by: Maciej W. Rozycki <[email protected]>
> ---
> It should be obvious.
>
> Please apply.

ouch ... -stable stuff too i guess.

Acked-by: Ingo Molnar <[email protected]>

Ingo