diff options
author | Kumar Gala <galak@codeaurora.org> | 2015-02-04 16:30:46 -0600 |
---|---|---|
committer | Kumar Gala <galak@codeaurora.org> | 2015-03-11 15:06:37 -0500 |
commit | 4de43476fc1baaf2bb7a520fc9e3b1797943b615 (patch) | |
tree | 1f68e9c580db33a5ce0e064469fb7a5f6d12475f /arch/arm/mach-qcom/platsmp.c | |
parent | b97fdb6dc0effe0612bc60fc9db7017b9fd81932 (diff) | |
download | blackbird-obmc-linux-4de43476fc1baaf2bb7a520fc9e3b1797943b615.tar.gz blackbird-obmc-linux-4de43476fc1baaf2bb7a520fc9e3b1797943b615.zip |
ARM: qcom: Prep scm code for move to drivers/firmware
Add qcom prefix to functions, etc to create a unique name space for the
scm code as it gets ready to move out of qcom specific mach dir.
Signed-off-by: Kumar Gala <galak@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-qcom/platsmp.c')
-rw-r--r-- | arch/arm/mach-qcom/platsmp.c | 8 |
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) unsigned int flags = 0; static const int cold_boot_flags[] = { 0, - SCM_FLAG_COLDBOOT_CPU1, - SCM_FLAG_COLDBOOT_CPU2, - SCM_FLAG_COLDBOOT_CPU3, + QCOM_SCM_FLAG_COLDBOOT_CPU1, + QCOM_SCM_FLAG_COLDBOOT_CPU2, + QCOM_SCM_FLAG_COLDBOOT_CPU3, }; for_each_present_cpu(cpu) { @@ -337,7 +337,7 @@ static void __init qcom_smp_prepare_cpus(unsigned int max_cpus) flags |= cold_boot_flags[map]; } - if (scm_set_boot_addr(virt_to_phys(secondary_startup_arm), flags)) { + if (qcom_scm_set_boot_addr(virt_to_phys(secondary_startup_arm), flags)) { for_each_present_cpu(cpu) { if (cpu == smp_processor_id()) continue; |