blob: ddc043cd01b76471190b478487da2530a2080fc3 [file] [log] [blame]
Abinaya Pb444e832018-03-08 12:45:23 +05301/* Copyright (c) 2015, 2017-2018, 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/kernel.h>
14#include "board-dt.h"
15#include <asm/mach/map.h>
16#include <asm/mach/arch.h>
17
18static const char *mdm9650_dt_match[] __initconst = {
19 "qcom,mdm9650",
20 NULL
21};
22
23static void __init mdm9650_init(void)
24{
25 board_dt_populate(NULL);
26}
27
28DT_MACHINE_START(MDM9650_DT,
29 "Qualcomm Technologies, Inc. MDM 9650 (Flattened Device Tree)")
30 .init_machine = mdm9650_init,
31 .dt_compat = mdm9650_dt_match,
32MACHINE_END