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

stmmac: dwmac-socfpga: fix wrong pointer passed to PTR_ERR()



PTR_ERR should access the value just tested by IS_ERR, otherwise
the wrong error code will be returned.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 178cd55f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ static int socfpga_dwmac_parse_data(struct socfpga_dwmac *dwmac, struct device *
				dev_err(dev,
					"%s: ERROR: failed mapping tse control port\n",
					__func__);
				return PTR_ERR(dwmac->pcs.sgmii_adapter_base);
				return PTR_ERR(dwmac->pcs.tse_pcs_base);
			}
		}
	}