diff options
author | Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> | 2012-11-02 08:44:34 -0400 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-01-10 12:44:39 -0500 |
commit | 902ef5d77aeaff43bce8d3ce55c442a12eb71819 (patch) | |
tree | 9e597c23eeb5fbb4944dab3d007ea663e831e207 /arch | |
parent | 73171d15873e9246c82aeda5c7fd8ec11cb97be9 (diff) |
ARM: mach-ux500: use SGI0 to wake up the other core
The commit 7d28e3eaa1a8e951251b942e7220f97114bd73b9
("ARM: ux500: wake secondary cpu via resched") makes use
of schedule IPI to wake up the secondary core which seems
incorrect. Rather use SGI0.
Signed-off-by: srinidhi kasagar <srinidhi.kasagar@stericsson.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-ux500/platsmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ux500/platsmp.c b/arch/arm/mach-ux500/platsmp.c index 3db7782f3afb..79531f1dffbc 100644 --- a/arch/arm/mach-ux500/platsmp.c +++ b/arch/arm/mach-ux500/platsmp.c | |||
@@ -91,7 +91,7 @@ static int __cpuinit ux500_boot_secondary(unsigned int cpu, struct task_struct * | |||
91 | */ | 91 | */ |
92 | write_pen_release(cpu_logical_map(cpu)); | 92 | write_pen_release(cpu_logical_map(cpu)); |
93 | 93 | ||
94 | smp_send_reschedule(cpu); | 94 | gic_raise_softirq(cpumask_of(cpu), 0); |
95 | 95 | ||
96 | timeout = jiffies + (1 * HZ); | 96 | timeout = jiffies + (1 * HZ); |
97 | while (time_before(jiffies, timeout)) { | 97 | while (time_before(jiffies, timeout)) { |