On Thu, 2013-05-16 at 13:15 +0200, Wolfram Sang wrote:
> devm_ioremap_resource does sanity checks on the given resource. No need to
> duplicate this in the driver.
[]
> diff --git a/drivers/net/ethernet/renesas/sh_eth.c 
> b/drivers/net/ethernet/renesas/sh_eth.c
[]
> @@ -2745,11 +2745,6 @@ static int sh_eth_drv_probe(struct platform_device 
> *pdev)
>       if (mdp->cd->tsu) {
>               struct resource *rtsu;
>               rtsu = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> -             if (!rtsu) {
> -                     dev_err(&pdev->dev, "Not found TSU resource\n");
> -                     ret = -ENODEV;
> -                     goto out_release;
> -             }
>               mdp->tsu_addr = devm_ioremap_resource(&pdev->dev, rtsu);
>               if (IS_ERR(mdp->tsu_addr)) {
>                       ret = PTR_ERR(mdp->tsu_addr);

I'm not sure it matters, but at least one of these
conversions will now return -EINVAL instead of -ENODEV


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to