소스 검색

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: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
Wei Yongjun 11 년 전
부모
커밋
575a19354c
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      drivers/net/ethernet/marvell/mvpp2.c

+ 1 - 0
drivers/net/ethernet/marvell/mvpp2.c

@@ -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;
 	}