mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
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: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
178cd55f08
commit
2b8fb41844
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user