From: Peng Fan Date: Thu, 29 Jan 2026 10:54:10 +0000 (+0800) Subject: imx8ulp_evk: Drop board_phy_config X-Git-Tag: v2026.04-rc2~11^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba69cabb645b63ddeee5fb2696614501788716f0;p=thirdparty%2Fu-boot.git 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 --- 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 -#include -#include #include #include #include #include -#include -#include #include #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)