diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-11-04 19:18:05 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-11-15 18:21:48 -0500 |
commit | 07a80e49240ff57bccc3c65944d35947c3d33697 (patch) | |
tree | 9a90258c6f5f060ac3fd5f6f827907f421e4637b /arch/mips/kernel/cevt-sb1250.c | |
parent | a57c228935fd55c4a1cf7c0b7823537c81914000 (diff) |
[MIPS] Sibyte: pin timer interrupt to their cores.
Or strange things will happen.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/cevt-sb1250.c')
-rw-r--r-- | arch/mips/kernel/cevt-sb1250.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/kernel/cevt-sb1250.c b/arch/mips/kernel/cevt-sb1250.c index e2029d0fc39b..194e0f726fe8 100644 --- a/arch/mips/kernel/cevt-sb1250.c +++ b/arch/mips/kernel/cevt-sb1250.c | |||
@@ -142,7 +142,10 @@ void __cpuinit sb1250_clockevent_init(void) | |||
142 | 142 | ||
143 | action->handler = sibyte_counter_handler; | 143 | action->handler = sibyte_counter_handler; |
144 | action->flags = IRQF_DISABLED | IRQF_PERCPU; | 144 | action->flags = IRQF_DISABLED | IRQF_PERCPU; |
145 | action->mask = cpumask_of_cpu(cpu); | ||
145 | action->name = name; | 146 | action->name = name; |
146 | action->dev_id = cd; | 147 | action->dev_id = cd; |
148 | |||
149 | irq_set_affinity(irq, cpumask_of_cpu(cpu)); | ||
147 | setup_irq(irq, action); | 150 | setup_irq(irq, action); |
148 | } | 151 | } |