From: Bernhard Walle Date: Tue, 8 May 2007 07:35:31 +0000 (-0700) Subject: Add IRQF_IRQPOLL flag on IA64 X-Git-Tag: v2.6.22-rc1~515 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=d217c265dc60ebfaa05ca003e9873476382de225;p=linux-2.6-omap-h63xx.git Add IRQF_IRQPOLL flag on IA64 Add IRQF_IRQPOLL for the timer interrupt on IA64. Signed-off-by: Bernhard Walle Cc: "Luck, Tony" Cc: Ingo Molnar Cc: Thomas Gleixner Cc: Alan Cox Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index 39e0cd3a088..a06667c7acc 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" };