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:
Wei Yongjun 2016-07-12 11:00:09 +00:00 committed by David S. Miller
parent 178cd55f08
commit 2b8fb41844

View File

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