Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment