From: Jerome Forissier Date: Wed, 11 Sep 2024 09:58:23 +0000 (+0200) Subject: net: fec_mxc_init(): do not ignore return status of fec_open() X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=104e890fc0ccac1963b893fb6e4841e688fbda89;p=u-boot.git net: fec_mxc_init(): do not ignore return status of fec_open() The fec_mxc_init() function currently always returns 0. This does not allow the callers to detect when for instance the PHY initialization failed due to the port being unconnected. Fix that by returning the status of fec_open(). Signed-off-by: Jerome Forissier Reviewed-by: Fabio Estevam Reviewed-by: Peter Robinson Reviewed-by: Ilias Apalodimas --- diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 0a0d92bc2c..2dc1364bee 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -615,8 +615,7 @@ static int fecmxc_init(struct udevice *dev) if (fec->xcv_type != SEVENWIRE) miiphy_restart_aneg(dev); #endif - fec_open(dev); - return 0; + return fec_open(dev); } /**