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

Commit 575a1935 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

net: mvpp2: Fix error return code in mvpp2_probe()



Fix to return -ENODEV from the no ports enabled error handling
case instead of 0.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 468f8646
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6307,6 +6307,7 @@ static int mvpp2_probe(struct platform_device *pdev)
	port_count = of_get_available_child_count(dn);
	if (port_count == 0) {
		dev_err(&pdev->dev, "no ports enabled\n");
		err = -ENODEV;
		goto err_gop_clk;
	}