aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/manage.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-07 14:40:54 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-02-19 06:58:15 -0500
commit7acdd53e5b2c55b6f7e3427e85e2f91fa814a4f9 (patch)
tree4806536bae32605a3107d6c4384547693eda566c /kernel/irq/manage.c
parentbd062e7667ac173afef57fbfe9327f3b914a9d4c (diff)
genirq: Move IRQ_SPURIOUS_DISABLED to core state
No users outside. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq/manage.c')
-rw-r--r--kernel/irq/manage.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index abe852c9449d..5b918ffa46af 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -897,9 +897,8 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
897 desc->status |= IRQ_PER_CPU; 897 desc->status |= IRQ_PER_CPU;
898#endif 898#endif
899 899
900 desc->status &= ~(IRQ_WAITING | IRQ_ONESHOT | 900 desc->status &= ~(IRQ_WAITING | IRQ_ONESHOT | IRQ_INPROGRESS);
901 IRQ_INPROGRESS | IRQ_SPURIOUS_DISABLED); 901 desc->istate &= ~(IRQS_AUTODETECT | IRQS_SPURIOUS_DISABLED);
902 desc->istate &= ~IRQS_AUTODETECT;
903 902
904 if (new->flags & IRQF_ONESHOT) 903 if (new->flags & IRQF_ONESHOT)
905 desc->status |= IRQ_ONESHOT; 904 desc->status |= IRQ_ONESHOT;
@@ -937,8 +936,8 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
937 * Check whether we disabled the irq via the spurious handler 936 * Check whether we disabled the irq via the spurious handler
938 * before. Reenable it and give it another chance. 937 * before. Reenable it and give it another chance.
939 */ 938 */
940 if (shared && (desc->status & IRQ_SPURIOUS_DISABLED)) { 939 if (shared && (desc->istate & IRQS_SPURIOUS_DISABLED)) {
941 desc->status &= ~IRQ_SPURIOUS_DISABLED; 940 desc->istate &= ~IRQS_SPURIOUS_DISABLED;
942 __enable_irq(desc, irq, false); 941 __enable_irq(desc, irq, false);
943 } 942 }
944 943