diff options
Diffstat (limited to 'arch/parisc/kernel/irq.c')
-rw-r--r-- | arch/parisc/kernel/irq.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c index 006385dbee66..f7ae2bcd49a5 100644 --- a/arch/parisc/kernel/irq.c +++ b/arch/parisc/kernel/irq.c | |||
@@ -291,12 +291,14 @@ void do_cpu_irq_mask(struct pt_regs *regs) | |||
291 | static struct irqaction timer_action = { | 291 | static struct irqaction timer_action = { |
292 | .handler = timer_interrupt, | 292 | .handler = timer_interrupt, |
293 | .name = "timer", | 293 | .name = "timer", |
294 | .flags = SA_INTERRUPT, | ||
294 | }; | 295 | }; |
295 | 296 | ||
296 | #ifdef CONFIG_SMP | 297 | #ifdef CONFIG_SMP |
297 | static struct irqaction ipi_action = { | 298 | static struct irqaction ipi_action = { |
298 | .handler = ipi_interrupt, | 299 | .handler = ipi_interrupt, |
299 | .name = "IPI", | 300 | .name = "IPI", |
301 | .flags = SA_INTERRUPT, | ||
300 | }; | 302 | }; |
301 | #endif | 303 | #endif |
302 | 304 | ||