diff options
author | Bernhard Walle <bwalle@suse.de> | 2007-05-08 03:35:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:22 -0400 |
commit | 57501c70747fd6d7b14f7863126e5a75d29613b1 (patch) | |
tree | 03843f35aa3a7f0175fc580524b670230d0d2285 /arch/parisc/kernel/irq.c | |
parent | e9485baed07561e516690671343622e5fcd73b48 (diff) |
Add IRQF_IRQPOLL flag on parisc
Add IRQF_IRQPOLL to the timer interrupt on parisc.
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Matthew Wilcox <willy@debian.org>
Cc: Grant Grundler <grundler@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/parisc/kernel/irq.c')
-rw-r--r-- | arch/parisc/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c index e9d09b020e86..c5c9125dacec 100644 --- a/arch/parisc/kernel/irq.c +++ b/arch/parisc/kernel/irq.c | |||
@@ -388,7 +388,7 @@ void do_cpu_irq_mask(struct pt_regs *regs) | |||
388 | static struct irqaction timer_action = { | 388 | static struct irqaction timer_action = { |
389 | .handler = timer_interrupt, | 389 | .handler = timer_interrupt, |
390 | .name = "timer", | 390 | .name = "timer", |
391 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_PERCPU, | 391 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_PERCPU | IRQF_IRQPOLL, |
392 | }; | 392 | }; |
393 | 393 | ||
394 | #ifdef CONFIG_SMP | 394 | #ifdef CONFIG_SMP |