diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-04 04:17:52 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-02-19 06:58:11 -0500 |
commit | 3aae994fb0f43f6d94a31c33536a83869504abdf (patch) | |
tree | f928d2067cecfbb89c1133a8b513f84c890f7e9d /kernel/irq/spurious.c | |
parent | 50f7c0327513d5acefbe26fd33498af18d1ffac5 (diff) |
genirq: Consolidate IRQ_DISABLED
Handle IRQ_DISABLED consistent.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq/spurious.c')
-rw-r--r-- | kernel/irq/spurious.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/spurious.c b/kernel/irq/spurious.c index c300b8f6008d..89e5e16aca39 100644 --- a/kernel/irq/spurious.c +++ b/kernel/irq/spurious.c | |||
@@ -301,7 +301,7 @@ void note_interrupt(unsigned int irq, struct irq_desc *desc, | |||
301 | * Now kill the IRQ | 301 | * Now kill the IRQ |
302 | */ | 302 | */ |
303 | printk(KERN_EMERG "Disabling IRQ #%d\n", irq); | 303 | printk(KERN_EMERG "Disabling IRQ #%d\n", irq); |
304 | desc->status |= IRQ_DISABLED | IRQ_SPURIOUS_DISABLED; | 304 | desc->status |= IRQ_SPURIOUS_DISABLED; |
305 | desc->depth++; | 305 | desc->depth++; |
306 | irq_disable(desc); | 306 | irq_disable(desc); |
307 | 307 | ||