blob: fc18b9078a63f6f1fda0cd6115e207a18528d443 [file] [log] [blame]
Abinaya Pa28c9032018-03-18 10:48:17 +05301/*
2 * Copyright (c) 2015, 2018, The Linux Foundation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#include <linux/kernel.h>
15#include <asm/mach/map.h>
16#include <asm/mach/arch.h>
17#include "board-dt.h"
18
19static const char *mdm9607_dt_match[] __initconst = {
20 "qcom,mdm9607",
21 NULL
22};
23
24static void __init mdm9607_init(void)
25{
26 board_dt_populate(NULL);
27}
28
29DT_MACHINE_START(MDM9607_DT,
30 "Qualcomm Technologies, Inc. MDM 9607 (Flattened Device Tree)")
31 .init_machine = mdm9607_init,
32 .dt_compat = mdm9607_dt_match,
33MACHINE_END