From: Vladimir Oltean Date: Tue, 24 Aug 2021 12:00:43 +0000 (+0300) Subject: net: dsa: felix: propagate the error code from phy_startup() X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=4f8f801c97e457b72c0e4229c3013cc9bbd4254d;p=u-boot.git net: dsa: felix: propagate the error code from phy_startup() Make sure that the link status returned by phy_startup() is propagated to the .start() method of struct eth_ops. Signed-off-by: Vladimir Oltean Reviewed-by: Ramon Fried Tested-by: Michael Walle --- diff --git a/drivers/net/mscc_eswitch/felix_switch.c b/drivers/net/mscc_eswitch/felix_switch.c index c8ecf4f194..6aa7978446 100644 --- a/drivers/net/mscc_eswitch/felix_switch.c +++ b/drivers/net/mscc_eswitch/felix_switch.c @@ -352,9 +352,7 @@ static int felix_port_enable(struct udevice *dev, int port, FELIX_QSYS_SYSTEM_SW_PORT_LOSSY | FELIX_QSYS_SYSTEM_SW_PORT_SCH(1)); - phy_startup(phy); - - return 0; + return phy_startup(phy); } static void felix_port_disable(struct udevice *dev, int pidx,