[PATCH] genirq:fixup missing SA_PERCPU replacement
The irqflags consolidation converted SA_PERCPU_IRQ to IRQF_PERCPU but did not define the new constant. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
52e405eaa9
commit
284c66806e
@ -234,7 +234,7 @@ int setup_irq(unsigned int irq, struct irqaction *new)
|
||||
((old->flags ^ new->flags) & IRQF_TRIGGER_MASK))
|
||||
goto mismatch;
|
||||
|
||||
#if defined(CONFIG_IRQ_PER_CPU) && defined(IRQF_PERCPU)
|
||||
#if defined(CONFIG_IRQ_PER_CPU)
|
||||
/* All handlers must agree on per-cpuness */
|
||||
if ((old->flags & IRQF_PERCPU) !=
|
||||
(new->flags & IRQF_PERCPU))
|
||||
@ -250,7 +250,7 @@ int setup_irq(unsigned int irq, struct irqaction *new)
|
||||
}
|
||||
|
||||
*p = new;
|
||||
#if defined(CONFIG_IRQ_PER_CPU) && defined(IRQF_PERCPU)
|
||||
#if defined(CONFIG_IRQ_PER_CPU)
|
||||
if (new->flags & IRQF_PERCPU)
|
||||
desc->status |= IRQ_PER_CPU;
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user