aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-qcom/platsmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-qcom/platsmp.c')
-rw-r--r--arch/arm/mach-qcom/platsmp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-qcom/platsmp.c b/arch/arm/mach-qcom/platsmp.c
index 8f4962ebf8c2..596e6237dc7e 100644
--- a/arch/arm/mach-qcom/platsmp.c
+++ b/arch/arm/mach-qcom/platsmp.c
@@ -323,9 +323,9 @@ static void __init qcom_smp_prepare_cpus(unsigned int max_cpus)
323 unsigned int flags = 0; 323 unsigned int flags = 0;
324 static const int cold_boot_flags[] = { 324 static const int cold_boot_flags[] = {
325 0, 325 0,
326 SCM_FLAG_COLDBOOT_CPU1, 326 QCOM_SCM_FLAG_COLDBOOT_CPU1,
327 SCM_FLAG_COLDBOOT_CPU2, 327 QCOM_SCM_FLAG_COLDBOOT_CPU2,
328 SCM_FLAG_COLDBOOT_CPU3, 328 QCOM_SCM_FLAG_COLDBOOT_CPU3,
329 }; 329 };
330 330
331 for_each_present_cpu(cpu) { 331 for_each_present_cpu(cpu) {
@@ -337,7 +337,7 @@ static void __init qcom_smp_prepare_cpus(unsigned int max_cpus)
337 flags |= cold_boot_flags[map]; 337 flags |= cold_boot_flags[map];
338 } 338 }
339 339
340 if (scm_set_boot_addr(virt_to_phys(secondary_startup_arm), flags)) { 340 if (qcom_scm_set_boot_addr(virt_to_phys(secondary_startup_arm), flags)) {
341 for_each_present_cpu(cpu) { 341 for_each_present_cpu(cpu) {
342 if (cpu == smp_processor_id()) 342 if (cpu == smp_processor_id())
343 continue; 343 continue;