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

Commit 2c006994 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

bfin_mac: fix error return code in bfin_mac_probe()



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

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 155d940a
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -1700,7 +1700,8 @@ static int bfin_mac_probe(struct platform_device *pdev)
	}
	}


	bfin_mac_hwtstamp_init(ndev);
	bfin_mac_hwtstamp_init(ndev);
	if (bfin_phc_init(ndev, &pdev->dev)) {
	rc = bfin_phc_init(ndev, &pdev->dev);
	if (rc) {
		dev_err(&pdev->dev, "Cannot register PHC device!\n");
		dev_err(&pdev->dev, "Cannot register PHC device!\n");
		goto out_err_phc;
		goto out_err_phc;
	}
	}