OSDN Git Service

iio: imx7d_adc: Remove unneeded error message
authorFabio Estevam <festevam@gmail.com>
Mon, 3 Jun 2019 19:34:30 +0000 (16:34 -0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 17 Jun 2019 20:06:44 +0000 (21:06 +0100)
In case of ioremap failure, the core code will take care of printing
the error message, so there is no need for having a local error
message in the driver.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/imx7d_adc.c

index 958a34d..3327994 100644 (file)
@@ -497,11 +497,8 @@ static int imx7d_adc_probe(struct platform_device *pdev)
        info->dev = dev;
 
        info->regs = devm_platform_ioremap_resource(pdev, 0);
-       if (IS_ERR(info->regs)) {
-               ret = PTR_ERR(info->regs);
-               dev_err(dev, "Failed to remap adc memory, err = %d\n", ret);
-               return ret;
-       }
+       if (IS_ERR(info->regs))
+               return PTR_ERR(info->regs);
 
        irq = platform_get_irq(pdev, 0);
        if (irq < 0) {