diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-07-01 22:29:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-02 16:58:47 -0400 |
commit | 733ea869e5756e0fd0333728cc1ed7c42e6ddfc0 (patch) | |
tree | 91fa076106e45ad7fb0c6b1492eee6b060fa4e43 /arch/parisc | |
parent | f40298fddcc3c8115c6135c9733f5a0de52dcea9 (diff) |
[PATCH] irq-flags: PARISC: Use the new IRQF_ constants
Use the new IRQF_ constants and remove the SA_INTERRUPT define
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/irq.c | 4 |
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) | |||
366 | static struct irqaction timer_action = { | 366 | static 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 |
373 | static struct irqaction ipi_action = { | 373 | static 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 | ||