summaryrefslogtreecommitdiff
path: root/arch/arm/mach-msm/board-dt-8960.c
diff options
context:
space:
mode:
authorRohit Vaswani <rvaswani@codeaurora.org>2013-09-09 23:24:54 (GMT)
committerDavid Brown <davidb@codeaurora.org>2013-09-25 20:02:56 (GMT)
commitd0e190c37a85f1a8b7dccada8b2fb8fa64c36635 (patch)
tree5832447aab3f53ace2df82ffd872725f98ba0c18 /arch/arm/mach-msm/board-dt-8960.c
parent61e570a9df06f9a8a168b0f1b9fc221736d5d3f3 (diff)
downloadlinux-fsl-qoriq-d0e190c37a85f1a8b7dccada8b2fb8fa64c36635.tar.xz
ARM: msm: Create a common board-dt and config ARCH_MSM_DT
Create a config ARCH_MSM_DT and common board-dt.c to encapsulate the MSM DT based targets. Reviewed-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org> Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/board-dt-8960.c')
-rw-r--r--arch/arm/mach-msm/board-dt-8960.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/arch/arm/mach-msm/board-dt-8960.c b/arch/arm/mach-msm/board-dt-8960.c
deleted file mode 100644
index d4ca52c..0000000
--- a/arch/arm/mach-msm/board-dt-8960.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 and
- * only version 2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#include <linux/init.h>
-#include <linux/of_platform.h>
-
-#include <asm/mach/arch.h>
-#include <asm/mach/map.h>
-
-#include "common.h"
-
-static void __init msm_dt_init(void)
-{
- of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
-}
-
-static const char * const msm8960_dt_match[] __initconst = {
- "qcom,msm8960-cdp",
- NULL
-};
-
-DT_MACHINE_START(MSM8960_DT, "Qualcomm MSM (Flattened Device Tree)")
- .smp = smp_ops(msm_smp_ops),
- .init_machine = msm_dt_init,
- .dt_compat = msm8960_dt_match,
-MACHINE_END