From: YueHaibing Date: Wed, 21 Aug 2019 13:38:54 +0000 (+0800) Subject: pxa168_eth: use devm_platform_ioremap_resource() to simplify code X-Git-Tag: for-linus-2019-09-27~91^2~183 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=531fd23b00610fb066da7776ea25db8aa383a4b8;p=linux-2.6-block.git pxa168_eth: use devm_platform_ioremap_resource() to simplify code Use devm_platform_ioremap_resource() to simplify the code a bit. This is detected by coccinelle. Reported-by: Hulk Robot Signed-off-by: YueHaibing Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/marvell/pxa168_eth.c b/drivers/net/ethernet/marvell/pxa168_eth.c index 3aa998797bc1..51b77c2de400 100644 --- a/drivers/net/ethernet/marvell/pxa168_eth.c +++ b/drivers/net/ethernet/marvell/pxa168_eth.c @@ -1425,8 +1425,7 @@ static int pxa168_eth_probe(struct platform_device *pdev) pep->dev = dev; pep->clk = clk; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - pep->base = devm_ioremap_resource(&pdev->dev, res); + pep->base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(pep->base)) { err = -ENOMEM; goto err_netdev;