Commit 88ec7cb2 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

net: lpc-enet: fix error return code in lpc_mii_init()



Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: b7370112 ("lpc32xx: Added ethernet driver")
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Acked-by: default avatarVladimir Zapolskiy <vz@mleia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f8d530ac
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -823,7 +823,8 @@ static int lpc_mii_init(struct netdata_local *pldat)
	if (err)
		goto err_out_unregister_bus;

	if (lpc_mii_probe(pldat->ndev) != 0)
	err = lpc_mii_probe(pldat->ndev);
	if (err)
		goto err_out_unregister_bus;

	return 0;