diff options
author | Bernhard Walle <bwalle@suse.de> | 2007-05-08 03:35:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:22 -0400 |
commit | e9485baed07561e516690671343622e5fcd73b48 (patch) | |
tree | c0f74a6f0ffc3329c9756e27894d411e1bb12f00 /arch/sh/kernel/timers/timer-cmt.c | |
parent | d217c265dc60ebfaa05ca003e9873476382de225 (diff) |
Add IRQF_IRQPOLL flag on sh
Add IRQF_IRQPOLL on each timer interrupt on SH2.
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/sh/kernel/timers/timer-cmt.c')
-rw-r--r-- | arch/sh/kernel/timers/timer-cmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/timers/timer-cmt.c b/arch/sh/kernel/timers/timer-cmt.c index a574b93a4e7b..82de6895ade5 100644 --- a/arch/sh/kernel/timers/timer-cmt.c +++ b/arch/sh/kernel/timers/timer-cmt.c | |||
@@ -115,7 +115,7 @@ static irqreturn_t cmt_timer_interrupt(int irq, void *dev_id) | |||
115 | static struct irqaction cmt_irq = { | 115 | static struct irqaction cmt_irq = { |
116 | .name = "timer", | 116 | .name = "timer", |
117 | .handler = cmt_timer_interrupt, | 117 | .handler = cmt_timer_interrupt, |
118 | .flags = IRQF_DISABLED | IRQF_TIMER, | 118 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
119 | .mask = CPU_MASK_NONE, | 119 | .mask = CPU_MASK_NONE, |
120 | }; | 120 | }; |
121 | 121 | ||