u-boot/board/freescale/ls1088a/eth_ls1088ardb.c
Ioana Ciornei a33b8baf20 board: freescale: ls1088a: remove code under !CONFIG_DM_ETH
Now that DM_ETH is enabled by default, there is no point in keeping the
non-DM_ETH code which initialized the ethernet interfaces.

Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
2023-03-14 18:56:27 +08:00

13 lines
200 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2017 NXP
*/
#include <fsl-mc/fsl_mc.h>
#if defined(CONFIG_RESET_PHY_R)
void reset_phy(void)
{
mc_env_boot();
}
#endif /* CONFIG_RESET_PHY_R */