diff options
author | Rohit Vaswani <rvaswani@codeaurora.org> | 2013-09-10 01:24:54 +0200 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2013-09-25 22:02:56 +0200 |
commit | d0e190c37a85f1a8b7dccada8b2fb8fa64c36635 (patch) | |
tree | 5832447aab3f53ace2df82ffd872725f98ba0c18 /arch/arm/mach-msm/board-dt-8960.c | |
parent | ARM: msm: Remove irqs-*.h files for DT based targets (diff) | |
download | linux-d0e190c37a85f1a8b7dccada8b2fb8fa64c36635.tar.xz linux-d0e190c37a85f1a8b7dccada8b2fb8fa64c36635.zip |
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.c | 35 |
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 d4ca52c45111..000000000000 --- 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 |