Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003  * Copyright 2012 Sascha Hauer, Pengutronix
0004  */
0005 
0006 #include <asm/mach/arch.h>
0007 #include "common.h"
0008 
0009 static const char * const imx31_dt_board_compat[] __initconst = {
0010     "fsl,imx31",
0011     NULL
0012 };
0013 
0014 DT_MACHINE_START(IMX31_DT, "Freescale i.MX31 (Device Tree Support)")
0015     .map_io     = mx31_map_io,
0016     .init_early = imx31_init_early,
0017     .dt_compat  = imx31_dt_board_compat,
0018 MACHINE_END