summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeng Fan <[email protected]>2026-01-29 18:54:10 +0800
committerFabio Estevam <[email protected]>2026-02-06 20:29:59 -0300
commitba69cabb645b63ddeee5fb2696614501788716f0 (patch)
treedc72de323804ff43c76a3c361e40b38de9a5d34c
parent8178c237374537585c7a1d945136725bce48c8a7 (diff)
imx8ulp_evk: Drop board_phy_config
There is already a weak function in drivers/net/phy/phy.c, which does the same thing. So drop it. Signed-off-by: Peng Fan <[email protected]>
-rw-r--r--board/nxp/imx8ulp_evk/imx8ulp_evk.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/board/nxp/imx8ulp_evk/imx8ulp_evk.c b/board/nxp/imx8ulp_evk/imx8ulp_evk.c
index cd17f6960c7..dc4054b92be 100644
--- a/board/nxp/imx8ulp_evk/imx8ulp_evk.c
+++ b/board/nxp/imx8ulp_evk/imx8ulp_evk.c
@@ -4,14 +4,10 @@
*/
#include <env.h>
-#include <miiphy.h>
-#include <netdev.h>
#include <asm/arch/imx8ulp-pins.h>
#include <asm/arch/clock.h>
#include <asm/arch/pcc.h>
#include <asm/arch/sys_proto.h>
-#include <miiphy.h>
-#include <netdev.h>
#include <asm/gpio.h>
#if IS_ENABLED(CONFIG_FEC_MXC)
@@ -38,13 +34,6 @@ static int setup_fec(void)
return 0;
}
-
-int board_phy_config(struct phy_device *phydev)
-{
- if (phydev->drv->config)
- phydev->drv->config(phydev);
- return 0;
-}
#endif
#define I2C_PAD_CTRL (PAD_CTL_ODE)