From: Bernhard Walle Date: Tue, 8 May 2007 07:35:31 +0000 (-0700) Subject: Add IRQF_IRQPOLL flag on IA64 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d217c265dc60ebfaa05ca003e9873476382de225;p=linux-beck.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 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" };