Sfoglia il codice sorgente

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>
Bernhard Walle 18 anni fa
parent
commit
d217c265dc
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      arch/ia64/kernel/time.c

+ 1 - 1
arch/ia64/kernel/time.c

@@ -235,7 +235,7 @@ ia64_init_itm (void)
 
 
 static struct irqaction timer_irqaction = {
 static struct irqaction timer_irqaction = {
 	.handler =	timer_interrupt,
 	.handler =	timer_interrupt,
-	.flags =	IRQF_DISABLED,
+	.flags =	IRQF_DISABLED | IRQF_IRQPOLL,
 	.name =		"timer"
 	.name =		"timer"
 };
 };