aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ux500
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-11-01 23:34:22 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-11-01 23:34:22 -0400
commit6585dea1f99cc2265582ff2e4cc1727062136e92 (patch)
tree57378ccfe0f9fde73081e1f9355d05dd4131e178 /arch/arm/mach-ux500
parent16ee792e45cf0c97ce061fce03c36cab5551ec72 (diff)
parent97c24c1aa403e0d4ef7c1958db8459e488862b46 (diff)
Merge branch 'next/cross-platform' of git://git.linaro.org/people/arnd/arm-soc
* 'next/cross-platform' of git://git.linaro.org/people/arnd/arm-soc: arm/imx: use Kconfig choice for low-level debug UART selection ARM: realview: use Kconfig choice for debug UART selection ARM: plat-samsung: use Kconfig choice for debug UART selection ARM: versatile: convert logical CPU numbers to physical numbers ARM: ux500: convert logical CPU numbers to physical numbers ARM: shmobile: convert logical CPU numbers to physical numbers ARM: msm: convert logical CPU numbers to physical numbers ARM: exynos4: convert logical CPU numbers to physical numbers Fix up trivial conflict (config DEBUG_S3C_UART move/split vs addition of ARM_KPROBES_TEST option) in arch/arm/Kconfig.debug
Diffstat (limited to 'arch/arm/mach-ux500')
-rw-r--r--arch/arm/mach-ux500/hotplug.c2
-rw-r--r--arch/arm/mach-ux500/platsmp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-ux500/hotplug.c b/arch/arm/mach-ux500/hotplug.c
index dd8037ebccf8..572015e57cd9 100644
--- a/arch/arm/mach-ux500/hotplug.c
+++ b/arch/arm/mach-ux500/hotplug.c
@@ -24,7 +24,7 @@ static inline void platform_do_lowpower(unsigned int cpu)
24 for (;;) { 24 for (;;) {
25 __asm__ __volatile__("dsb\n\t" "wfi\n\t" 25 __asm__ __volatile__("dsb\n\t" "wfi\n\t"
26 : : : "memory"); 26 : : : "memory");
27 if (pen_release == cpu) { 27 if (pen_release == cpu_logical_map(cpu)) {
28 /* 28 /*
29 * OK, proper wakeup, we're done 29 * OK, proper wakeup, we're done
30 */ 30 */
diff --git a/arch/arm/mach-ux500/platsmp.c b/arch/arm/mach-ux500/platsmp.c
index eb5199102cfa..a19e398dade3 100644
--- a/arch/arm/mach-ux500/platsmp.c
+++ b/arch/arm/mach-ux500/platsmp.c
@@ -96,7 +96,7 @@ int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
96 * the holding pen - release it, then wait for it to flag 96 * the holding pen - release it, then wait for it to flag
97 * that it has been released by resetting pen_release. 97 * that it has been released by resetting pen_release.
98 */ 98 */
99 write_pen_release(cpu); 99 write_pen_release(cpu_logical_map(cpu));
100 100
101 gic_raise_softirq(cpumask_of(cpu), 1); 101 gic_raise_softirq(cpumask_of(cpu), 1);
102 102