diff options
Diffstat (limited to 'arch/m68k/kernel/ints.c')
-rw-r--r-- | arch/m68k/kernel/ints.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/m68k/kernel/ints.c b/arch/m68k/kernel/ints.c index 5a8344b93547..b33e37fb7b0e 100644 --- a/arch/m68k/kernel/ints.c +++ b/arch/m68k/kernel/ints.c | |||
@@ -25,7 +25,6 @@ | |||
25 | * which must be served /Roman Zippel | 25 | * which must be served /Roman Zippel |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #include <linux/config.h> | ||
29 | #include <linux/module.h> | 28 | #include <linux/module.h> |
30 | #include <linux/types.h> | 29 | #include <linux/types.h> |
31 | #include <linux/sched.h> | 30 | #include <linux/sched.h> |
@@ -193,7 +192,7 @@ int setup_irq(unsigned int irq, struct irq_node *node) | |||
193 | prev = irq_list + irq; | 192 | prev = irq_list + irq; |
194 | if (*prev) { | 193 | if (*prev) { |
195 | /* Can't share interrupts unless both agree to */ | 194 | /* Can't share interrupts unless both agree to */ |
196 | if (!((*prev)->flags & node->flags & SA_SHIRQ)) { | 195 | if (!((*prev)->flags & node->flags & IRQF_SHARED)) { |
197 | spin_unlock_irqrestore(&contr->lock, flags); | 196 | spin_unlock_irqrestore(&contr->lock, flags); |
198 | return -EBUSY; | 197 | return -EBUSY; |
199 | } | 198 | } |