aboutsummaryrefslogtreecommitdiffstats
path: root/arch/parisc/kernel/irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/parisc/kernel/irq.c')
-rw-r--r--arch/parisc/kernel/irq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c
index 52761d96f991..5b8803cc3d69 100644
--- a/arch/parisc/kernel/irq.c
+++ b/arch/parisc/kernel/irq.c
@@ -366,14 +366,14 @@ void do_cpu_irq_mask(struct pt_regs *regs)
366static struct irqaction timer_action = { 366static struct irqaction timer_action = {
367 .handler = timer_interrupt, 367 .handler = timer_interrupt,
368 .name = "timer", 368 .name = "timer",
369 .flags = SA_INTERRUPT, 369 .flags = IRQF_DISABLED,
370}; 370};
371 371
372#ifdef CONFIG_SMP 372#ifdef CONFIG_SMP
373static struct irqaction ipi_action = { 373static struct irqaction ipi_action = {
374 .handler = ipi_interrupt, 374 .handler = ipi_interrupt,
375 .name = "IPI", 375 .name = "IPI",
376 .flags = SA_INTERRUPT, 376 .flags = IRQF_DISABLED,
377}; 377};
378#endif 378#endif
379 379