aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorBernhard Walle <bwalle@suse.de>2007-05-08 03:35:29 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-08 14:15:22 -0400
commitb34942fed0ada53ecd2d6bb27509319ec41e3e44 (patch)
tree8cf93d5c5a029933d7106620d7c40ce514b4979b /arch
parente6d828f44655bb85e67fda79fd0028a56168e4e0 (diff)
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')
-rw-r--r--arch/i386/mach-default/setup.c2
-rw-r--r--arch/i386/mach-visws/setup.c2
-rw-r--r--arch/i386/mach-voyager/setup.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/i386/mach-default/setup.c b/arch/i386/mach-default/setup.c
index c7881621070..7f635c7a238 100644
--- a/arch/i386/mach-default/setup.c
+++ b/arch/i386/mach-default/setup.c
@@ -81,7 +81,7 @@ void __init trap_init_hook(void)
81 81
82static struct irqaction irq0 = { 82static struct irqaction irq0 = {
83 .handler = timer_interrupt, 83 .handler = timer_interrupt,
84 .flags = IRQF_DISABLED | IRQF_NOBALANCING, 84 .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL,
85 .mask = CPU_MASK_NONE, 85 .mask = CPU_MASK_NONE,
86 .name = "timer" 86 .name = "timer"
87}; 87};
diff --git a/arch/i386/mach-visws/setup.c b/arch/i386/mach-visws/setup.c
index 233ee20907b..1f81f10e03a 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()
116 116
117static struct irqaction irq0 = { 117static struct irqaction irq0 = {
118 .handler = timer_interrupt, 118 .handler = timer_interrupt,
119 .flags = IRQF_DISABLED, 119 .flags = IRQF_DISABLED | IRQF_IRQPOLL,
120 .name = "timer", 120 .name = "timer",
121}; 121};
122 122
diff --git a/arch/i386/mach-voyager/setup.c b/arch/i386/mach-voyager/setup.c
index 447bb105cf5..2b55694e640 100644
--- a/arch/i386/mach-voyager/setup.c
+++ b/arch/i386/mach-voyager/setup.c
@@ -42,7 +42,7 @@ void __init trap_init_hook(void)
42 42
43static struct irqaction irq0 = { 43static struct irqaction irq0 = {
44 .handler = timer_interrupt, 44 .handler = timer_interrupt,
45 .flags = IRQF_DISABLED | IRQF_NOBALANCING, 45 .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL,
46 .mask = CPU_MASK_NONE, 46 .mask = CPU_MASK_NONE,
47 .name = "timer" 47 .name = "timer"
48}; 48};