diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-02-16 04:28:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-16 11:14:00 -0500 |
commit | d7e25f3394ba05a6d64cb2be42c2765fe72ea6b2 (patch) | |
tree | 9c8ad767b40577d6a2c5bd949adb7e1b64939215 /arch/x86_64 | |
parent | 76d2160147f43f982dfe881404cfde9fd0a9da21 (diff) |
[PATCH] genirq: remove IRQ_DISABLED
Now that disable_irq() defaults to delayed-disable semantics, the IRQ_DISABLED
flag is not needed anymore.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/io_apic.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86_64/kernel/io_apic.c b/arch/x86_64/kernel/io_apic.c index 566e64d966c4..950682f35766 100644 --- a/arch/x86_64/kernel/io_apic.c +++ b/arch/x86_64/kernel/io_apic.c | |||
@@ -810,11 +810,9 @@ static void ioapic_register_intr(int irq, int vector, unsigned long trigger) | |||
810 | trigger == IOAPIC_LEVEL) | 810 | trigger == IOAPIC_LEVEL) |
811 | set_irq_chip_and_handler_name(irq, &ioapic_chip, | 811 | set_irq_chip_and_handler_name(irq, &ioapic_chip, |
812 | handle_fasteoi_irq, "fasteoi"); | 812 | handle_fasteoi_irq, "fasteoi"); |
813 | else { | 813 | else |
814 | irq_desc[irq].status |= IRQ_DELAYED_DISABLE; | ||
815 | set_irq_chip_and_handler_name(irq, &ioapic_chip, | 814 | set_irq_chip_and_handler_name(irq, &ioapic_chip, |
816 | handle_edge_irq, "edge"); | 815 | handle_edge_irq, "edge"); |
817 | } | ||
818 | } | 816 | } |
819 | static void __init setup_IO_APIC_irq(int apic, int pin, int idx, int irq) | 817 | static void __init setup_IO_APIC_irq(int apic, int pin, int idx, int irq) |
820 | { | 818 | { |