Commit 3e490501 authored by Wei Yongjun's avatar Wei Yongjun Committed by Khalid Elmously

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

BugLink: https://bugs.launchpad.net/bugs/1884564

[ Upstream commit 88ec7cb2 ]

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>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
Signed-off-by: default avatarKhalid Elmously <khalid.elmously@canonical.com>
parent e264df85
...@@ -865,7 +865,8 @@ static int lpc_mii_init(struct netdata_local *pldat) ...@@ -865,7 +865,8 @@ static int lpc_mii_init(struct netdata_local *pldat)
if (mdiobus_register(pldat->mii_bus)) if (mdiobus_register(pldat->mii_bus))
goto err_out_free_mdio_irq; goto err_out_free_mdio_irq;
if (lpc_mii_probe(pldat->ndev) != 0) err = lpc_mii_probe(pldat->ndev);
if (err)
goto err_out_unregister_bus; goto err_out_unregister_bus;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment