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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c
index 82fe6ba29727..5b8803cc3d69 100644
--- a/arch/parisc/kernel/irq.c
+++ b/arch/parisc/kernel/irq.c
@@ -22,7 +22,6 @@
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */ 23 */
24#include <linux/bitops.h> 24#include <linux/bitops.h>
25#include <linux/config.h>
26#include <linux/errno.h> 25#include <linux/errno.h>
27#include <linux/init.h> 26#include <linux/init.h>
28#include <linux/interrupt.h> 27#include <linux/interrupt.h>
@@ -367,14 +366,14 @@ void do_cpu_irq_mask(struct pt_regs *regs)
367static struct irqaction timer_action = { 366static struct irqaction timer_action = {
368 .handler = timer_interrupt, 367 .handler = timer_interrupt,
369 .name = "timer", 368 .name = "timer",
370 .flags = SA_INTERRUPT, 369 .flags = IRQF_DISABLED,
371}; 370};
372 371
373#ifdef CONFIG_SMP 372#ifdef CONFIG_SMP
374static struct irqaction ipi_action = { 373static struct irqaction ipi_action = {
375 .handler = ipi_interrupt, 374 .handler = ipi_interrupt,
376 .name = "IPI", 375 .name = "IPI",
377 .flags = SA_INTERRUPT, 376 .flags = IRQF_DISABLED,
378}; 377};
379#endif 378#endif
380 379