mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 08:34:20 +08:00
c93197b004
i.MX31 has basic device tree support. To achieve the goal of converting all i.MX SoCs to a devicetree-only platform, remove imx31 board files. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
20 lines
439 B
C
20 lines
439 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright 2012 Sascha Hauer, Pengutronix
|
|
*/
|
|
|
|
#include <asm/mach/arch.h>
|
|
#include "common.h"
|
|
|
|
static const char * const imx31_dt_board_compat[] __initconst = {
|
|
"fsl,imx31",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(IMX31_DT, "Freescale i.MX31 (Device Tree Support)")
|
|
.map_io = mx31_map_io,
|
|
.init_early = imx31_init_early,
|
|
.init_irq = mx31_init_irq,
|
|
.dt_compat = imx31_dt_board_compat,
|
|
MACHINE_END
|