u-boot/board/beacon/imx8mn/imx8mn_beacon.c
Adam Ford 448616126b imx: imx8mm/imx8mn_beacon: Remove redundant code
The Ethernet controller and PHY use the device tree info to
configure themselves, so it's not necessary to manually do it
in the board file.  This permits the removal of a bunch of headers
as well.

Signed-off-by: Adam Ford <aford173@gmail.com>
Reviewed-by: Fabio Estevam <festevam@denx.de>
Acked-by: Peng Fan <peng.fan@nxp.com>
2022-04-12 15:36:17 +02:00

13 lines
195 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2022 Logic PD, Inc. dba Beacon EmbeddedWorks
*/
#include <asm/global_data.h>
DECLARE_GLOBAL_DATA_PTR;
int board_init(void)
{
return 0;
}