Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: mdio-bcm-iproc: 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 <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Ray Jui <ray.jui@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

YueHaibing and committed by
David S. Miller
bd301e05 a3a90244

+1 -3
+1 -3
drivers/net/phy/mdio-bcm-iproc.c
··· 123 123 { 124 124 struct iproc_mdio_priv *priv; 125 125 struct mii_bus *bus; 126 - struct resource *res; 127 126 int rc; 128 127 129 128 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL); 130 129 if (!priv) 131 130 return -ENOMEM; 132 131 133 - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 134 - priv->base = devm_ioremap_resource(&pdev->dev, res); 132 + priv->base = devm_platform_ioremap_resource(pdev, 0); 135 133 if (IS_ERR(priv->base)) { 136 134 dev_err(&pdev->dev, "failed to ioremap register\n"); 137 135 return PTR_ERR(priv->base);