diff options
author | Bernhard Walle | 2007-05-08 09:35:31 +0200 |
---|---|---|
committer | Linus Torvalds | 2007-05-08 20:15:22 +0200 |
commit | d217c265dc60ebfaa05ca003e9873476382de225 (patch) | |
tree | 391cb21349d918d069071c24e1763553db1b8318 /arch/ia64/kernel/time.c | |
parent | Add IRQF_IRQPOLL flag on i386 (diff) | |
download | kernel-qcow2-linux-d217c265dc60ebfaa05ca003e9873476382de225.tar.gz kernel-qcow2-linux-d217c265dc60ebfaa05ca003e9873476382de225.tar.xz kernel-qcow2-linux-d217c265dc60ebfaa05ca003e9873476382de225.zip |
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/kernel/time.c')
-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) static struct irqaction timer_irqaction = { .handler = timer_interrupt, - .flags = IRQF_DISABLED, + .flags = IRQF_DISABLED | IRQF_IRQPOLL, .name = "timer" }; |