diff options
author | Bernhard Walle <bwalle@suse.de> | 2007-05-08 00:35:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 11:15:22 -0700 |
commit | b34942fed0ada53ecd2d6bb27509319ec41e3e44 (patch) | |
tree | 8cf93d5c5a029933d7106620d7c40ce514b4979b /arch/i386/mach-visws | |
parent | e6d828f44655bb85e67fda79fd0028a56168e4e0 (diff) | |
download | blackbird-op-linux-b34942fed0ada53ecd2d6bb27509319ec41e3e44.tar.gz blackbird-op-linux-b34942fed0ada53ecd2d6bb27509319ec41e3e44.zip |
Add IRQF_IRQPOLL flag on i386
Add IRQF_IRQPOLL to timer interrupts on i386.
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Cc: Andi Kleen <ak@suse.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/i386/mach-visws')
-rw-r--r-- | arch/i386/mach-visws/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/mach-visws/setup.c b/arch/i386/mach-visws/setup.c index 233ee20907b9..1f81f10e03a0 100644 --- a/arch/i386/mach-visws/setup.c +++ b/arch/i386/mach-visws/setup.c @@ -116,7 +116,7 @@ void __init pre_setup_arch_hook() static struct irqaction irq0 = { .handler = timer_interrupt, - .flags = IRQF_DISABLED, + .flags = IRQF_DISABLED | IRQF_IRQPOLL, .name = "timer", }; |