diff options
author | Kumar Gala <galak@codeaurora.org> | 2014-02-05 01:38:45 +0400 |
---|---|---|
committer | Kumar Gala <galak@codeaurora.org> | 2014-02-07 02:20:41 +0400 |
commit | cf1e8f0cd665e2a9966d2bee4e11ecc0938ff166 (patch) | |
tree | a2339c1799ec5426e9e8a66726ec7ab1d3fa7ac1 /arch/arm/mach-qcom/board.c | |
parent | 7d6d45f86969acd57850ab4d91ea002db08ff235 (diff) | |
download | linux-cf1e8f0cd665e2a9966d2bee4e11ecc0938ff166.tar.xz |
ARM: qcom: Rename various msm prefixed functions to qcom
As mach-qcom will support a number of different Qualcomm SoC platforms
we replace the msm prefix on function names with qcom to be a bit more
generic.
Signed-off-by: Kumar Gala <galak@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-qcom/board.c')
-rw-r--r-- | arch/arm/mach-qcom/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-qcom/board.c b/arch/arm/mach-qcom/board.c index 4529f6b222d3..830f69c3a3ce 100644 --- a/arch/arm/mach-qcom/board.c +++ b/arch/arm/mach-qcom/board.c @@ -17,7 +17,7 @@ #include <asm/mach/arch.h> #include <asm/mach/map.h> -extern struct smp_operations msm_smp_ops; +extern struct smp_operations qcom_smp_ops; static const char * const qcom_dt_match[] __initconst = { "qcom,msm8660-surf", @@ -31,7 +31,7 @@ static const char * const apq8074_dt_match[] __initconst = { }; DT_MACHINE_START(QCOM_DT, "Qualcomm (Flattened Device Tree)") - .smp = smp_ops(msm_smp_ops), + .smp = smp_ops(qcom_smp_ops), .dt_compat = qcom_dt_match, MACHINE_END |