aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-qcom/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-qcom/board.c')
-rw-r--r--arch/arm/mach-qcom/board.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/arm/mach-qcom/board.c b/arch/arm/mach-qcom/board.c
index 830f69c3a3ce..bae617ef0b31 100644
--- a/arch/arm/mach-qcom/board.c
+++ b/arch/arm/mach-qcom/board.c
@@ -11,30 +11,16 @@
11 */ 11 */
12 12
13#include <linux/init.h> 13#include <linux/init.h>
14#include <linux/of.h>
15#include <linux/of_platform.h>
16 14
17#include <asm/mach/arch.h> 15#include <asm/mach/arch.h>
18#include <asm/mach/map.h>
19
20extern struct smp_operations qcom_smp_ops;
21 16
22static const char * const qcom_dt_match[] __initconst = { 17static const char * const qcom_dt_match[] __initconst = {
23 "qcom,msm8660-surf", 18 "qcom,msm8660-surf",
24 "qcom,msm8960-cdp", 19 "qcom,msm8960-cdp",
25 NULL
26};
27
28static const char * const apq8074_dt_match[] __initconst = {
29 "qcom,apq8074-dragonboard", 20 "qcom,apq8074-dragonboard",
30 NULL 21 NULL
31}; 22};
32 23
33DT_MACHINE_START(QCOM_DT, "Qualcomm (Flattened Device Tree)") 24DT_MACHINE_START(QCOM_DT, "Qualcomm (Flattened Device Tree)")
34 .smp = smp_ops(qcom_smp_ops),
35 .dt_compat = qcom_dt_match, 25 .dt_compat = qcom_dt_match,
36MACHINE_END 26MACHINE_END
37
38DT_MACHINE_START(APQ_DT, "Qualcomm (Flattened Device Tree)")
39 .dt_compat = apq8074_dt_match,
40MACHINE_END