mirror of https://gitee.com/openkylin/linux.git
net: bcmgenet: 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: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
531fd23b00
commit
4ca3348dff
|
@ -3437,7 +3437,6 @@ static int bcmgenet_probe(struct platform_device *pdev)
|
||||||
struct bcmgenet_priv *priv;
|
struct bcmgenet_priv *priv;
|
||||||
struct net_device *dev;
|
struct net_device *dev;
|
||||||
const void *macaddr;
|
const void *macaddr;
|
||||||
struct resource *r;
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
int err = -EIO;
|
int err = -EIO;
|
||||||
const char *phy_mode_str;
|
const char *phy_mode_str;
|
||||||
|
@ -3477,8 +3476,7 @@ static int bcmgenet_probe(struct platform_device *pdev)
|
||||||
macaddr = pd->mac_address;
|
macaddr = pd->mac_address;
|
||||||
}
|
}
|
||||||
|
|
||||||
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
priv->base = devm_platform_ioremap_resource(pdev, 0);
|
||||||
priv->base = devm_ioremap_resource(&pdev->dev, r);
|
|
||||||
if (IS_ERR(priv->base)) {
|
if (IS_ERR(priv->base)) {
|
||||||
err = PTR_ERR(priv->base);
|
err = PTR_ERR(priv->base);
|
||||||
goto err;
|
goto err;
|
||||||
|
|
Loading…
Reference in New Issue