diff options
author | Bernhard Walle <bwalle@suse.de> | 2007-05-08 03:35:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:22 -0400 |
commit | d217c265dc60ebfaa05ca003e9873476382de225 (patch) | |
tree | 391cb21349d918d069071c24e1763553db1b8318 /arch/ia64 | |
parent | b34942fed0ada53ecd2d6bb27509319ec41e3e44 (diff) |
Add IRQF_IRQPOLL flag on IA64
Add IRQF_IRQPOLL for the timer interrupt on IA64.
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Cc: "Luck, Tony" <tony.luck@intel.com>
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/ia64')
-rw-r--r-- | arch/ia64/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index 39e0cd3a0884..a06667c7acc0 100644 --- a/arch/ia64/kernel/time.c +++ b/arch/ia64/kernel/time.c | |||
@@ -235,7 +235,7 @@ ia64_init_itm (void) | |||
235 | 235 | ||
236 | static struct irqaction timer_irqaction = { | 236 | static struct irqaction timer_irqaction = { |
237 | .handler = timer_interrupt, | 237 | .handler = timer_interrupt, |
238 | .flags = IRQF_DISABLED, | 238 | .flags = IRQF_DISABLED | IRQF_IRQPOLL, |
239 | .name = "timer" | 239 | .name = "timer" |
240 | }; | 240 | }; |
241 | 241 | ||