Merge tag 'for-linus-v3.11-rc3' of git://oss.sgi.com/xfs/xfs
[deliverable/linux.git] / arch / arm / mach-msm / board-dt-8960.c
CommitLineData
c446407c
SB
1/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#include <linux/init.h>
c446407c
SB
14#include <linux/of_platform.h>
15
c446407c
SB
16#include <asm/mach/arch.h>
17
18#include "common.h"
19
c446407c
SB
20static void __init msm_dt_init(void)
21{
22 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
23}
24
25static const char * const msm8960_dt_match[] __initconst = {
26 "qcom,msm8960-cdp",
27 NULL
28};
29
30DT_MACHINE_START(MSM8960_DT, "Qualcomm MSM (Flattened Device Tree)")
25468fe8 31 .smp = smp_ops(msm_smp_ops),
c446407c 32 .map_io = msm_map_msm8960_io,
6bb27d73 33 .init_time = msm_dt_timer_init,
c446407c
SB
34 .init_machine = msm_dt_init,
35 .dt_compat = msm8960_dt_match,
c446407c 36MACHINE_END
This page took 0.099601 seconds and 5 git commands to generate.