]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/staging/dwc2: don't check resource with devm_ioremap_resource
authorWolfram Sang <wsa@the-dreams.de>
Thu, 16 May 2013 11:15:46 +0000 (13:15 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 May 2013 22:27:25 +0000 (15:27 -0700)
devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dwc2/platform.c

index 1f3d581a10787154acccc04d3bb5a9274731996b..b610960e93d3fd10f1a6a34d56fa7bea83e52711 100644 (file)
@@ -102,11 +102,6 @@ static int dwc2_driver_probe(struct platform_device *dev)
        }
 
        res = platform_get_resource(dev, IORESOURCE_MEM, 0);
-       if (!res) {
-               dev_err(&dev->dev, "missing memory base resource\n");
-               return -EINVAL;
-       }
-
        hsotg->regs = devm_ioremap_resource(&dev->dev, res);
        if (IS_ERR(hsotg->regs))
                return PTR_ERR(hsotg->regs);