net: ag71xx: use resource_size for the ioremap size
use resource_size to calcuate ioremap size and make the code simpler. Signed-off-by: Ding Xiang <dingxiang@cmss.chinamobile.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e9e1dcda2e
commit
c51ab067c5
@ -1686,7 +1686,7 @@ static int ag71xx_probe(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
ag->mac_base = devm_ioremap_nocache(&pdev->dev, res->start,
|
ag->mac_base = devm_ioremap_nocache(&pdev->dev, res->start,
|
||||||
res->end - res->start + 1);
|
resource_size(res));
|
||||||
if (!ag->mac_base) {
|
if (!ag->mac_base) {
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
goto err_free;
|
goto err_free;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user