Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7daa78e3 authored by Boris BREZILLON's avatar Boris BREZILLON Committed by David S. Miller
Browse files

net/cadence/macb: fix invalid 0 return if no phy is discovered on mii init



Replace misleading -1 (-EPERM) by a more appropriate return code (-ENXIO)
in macb_mii_probe function.
Save macb_mii_probe return before branching to err_out_unregister to avoid
erronous 0 return.

Signed-off-by: default avatarBoris BREZILLON <b.brezillon@overkiz.com>
Acked-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fd094808
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -276,7 +276,7 @@ static int macb_mii_probe(struct net_device *dev)
	phydev = phy_find_first(bp->mii_bus);
	if (!phydev) {
		netdev_err(dev, "no PHY found\n");
		return -1;
		return -ENXIO;
	}

	pdata = dev_get_platdata(&bp->pdev->dev);
@@ -379,9 +379,9 @@ int macb_mii_init(struct macb *bp)
	if (err)
		goto err_out_free_mdio_irq;

	if (macb_mii_probe(bp->dev) != 0) {
	err = macb_mii_probe(bp->dev);
	if (err)
		goto err_out_unregister_bus;
	}

	return 0;