Commit c960804f authored by Varka Bhadram's avatar Varka Bhadram Committed by David S. Miller

ethernet: renesas: remove unnecessary check

devm_ioremap_resource checks platform_get_resource() return value.
We can remove the duplicate check here.
Signed-off-by: default avatarVarka Bhadram <varkab@cdac.in>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7e5ae24a
...@@ -2769,10 +2769,6 @@ static int sh_eth_drv_probe(struct platform_device *pdev) ...@@ -2769,10 +2769,6 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
/* get base addr */ /* get base addr */
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (unlikely(res == NULL)) {
dev_err(&pdev->dev, "invalid resource\n");
return -EINVAL;
}
ndev = alloc_etherdev(sizeof(struct sh_eth_private)); ndev = alloc_etherdev(sizeof(struct sh_eth_private));
if (!ndev) if (!ndev)
...@@ -2781,8 +2777,6 @@ static int sh_eth_drv_probe(struct platform_device *pdev) ...@@ -2781,8 +2777,6 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
pm_runtime_enable(&pdev->dev); pm_runtime_enable(&pdev->dev);
pm_runtime_get_sync(&pdev->dev); pm_runtime_get_sync(&pdev->dev);
/* The sh Ether-specific entries in the device structure. */
ndev->base_addr = res->start;
devno = pdev->id; devno = pdev->id;
if (devno < 0) if (devno < 0)
devno = 0; devno = 0;
...@@ -2806,6 +2800,8 @@ static int sh_eth_drv_probe(struct platform_device *pdev) ...@@ -2806,6 +2800,8 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
goto out_release; goto out_release;
} }
ndev->base_addr = res->start;
spin_lock_init(&mdp->lock); spin_lock_init(&mdp->lock);
mdp->pdev = pdev; mdp->pdev = pdev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment