iio: adc: cc10001: use devm_platform_ioremap_resource
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 13 Oct 2019 12:25:12 +0000 (13:25 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 9 Nov 2019 12:18:22 +0000 (12:18 +0000)
Reduces local boilerplate.
Found by coccinelle:

drivers/iio/adc/cc10001_adc.c:344:1-18: WARNING: Use devm_platform_ioremap_resource for adc_dev -> reg_base

Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
Cc: Naidu Tellapati <naidu.tellapati@imgtec.com>
drivers/iio/adc/cc10001_adc.c

index f93f1d93b80dabefd97cac6d8456f6a25fcbb774..fe9257624f166eee823ed1b2b7438c060cb9dd5a 100644 (file)
@@ -310,7 +310,6 @@ static int cc10001_adc_probe(struct platform_device *pdev)
        struct device_node *node = pdev->dev.of_node;
        struct cc10001_adc_device *adc_dev;
        unsigned long adc_clk_rate;
-       struct resource *res;
        struct iio_dev *indio_dev;
        unsigned long channel_map;
        int ret;
@@ -340,8 +339,7 @@ static int cc10001_adc_probe(struct platform_device *pdev)
        indio_dev->info = &cc10001_adc_info;
        indio_dev->modes = INDIO_DIRECT_MODE;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       adc_dev->reg_base = devm_ioremap_resource(&pdev->dev, res);
+       adc_dev->reg_base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(adc_dev->reg_base)) {
                ret = PTR_ERR(adc_dev->reg_base);
                goto err_disable_reg;