66ba9c05fc
Several includes are not needed, so drop them. of_platform.h (for now) implicitly includes platform_device.h and of.h, so add explicit includes of those as needed. Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
31 lines
653 B
C
31 lines
653 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright 2012 Sascha Hauer, Pengutronix
|
|
*/
|
|
|
|
#include <asm/mach/arch.h>
|
|
#include "common.h"
|
|
#include "hardware.h"
|
|
|
|
static void __init imx25_init_early(void)
|
|
{
|
|
mxc_set_cpu_type(MXC_CPU_MX25);
|
|
}
|
|
|
|
static void __init imx25_dt_init(void)
|
|
{
|
|
imx_aips_allow_unprivileged_access("fsl,imx25-aips");
|
|
}
|
|
|
|
static const char * const imx25_dt_board_compat[] __initconst = {
|
|
"fsl,imx25",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(IMX25_DT, "Freescale i.MX25 (Device Tree Support)")
|
|
.init_early = imx25_init_early,
|
|
.init_machine = imx25_dt_init,
|
|
.init_late = imx25_pm_init,
|
|
.dt_compat = imx25_dt_board_compat,
|
|
MACHINE_END
|