Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 297d636a authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: board: add initial board file for msmzirc"

parents 822e2ef3 db004a8a
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
/* Copyright (c) 2013-2014, 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/kernel.h>
#include <asm/mach/map.h>
#include <asm/mach/arch.h>
#include <mach/board.h>
#include <mach/msm_iomap.h>

static void __init msmzirc_map_io(void)
{
	msm_map_msmzirc_io();
}

static const char *msmzirc_dt_match[] __initconst = {
	"qcom,msmzirc",
	NULL
};

DT_MACHINE_START(MSMZIRC_DT,
		 "Qualcomm Technologies, Inc. MSM ZIRC (Flattened Device Tree)")
	.dt_compat		= msmzirc_dt_match,
	.map_io			= msmzirc_map_io,
MACHINE_END