]> Pileus Git - ~andy/linux/commitdiff
staging: iio: spear_adc: Use devm_iio_device_alloc
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 22 Jul 2013 11:02:00 +0000 (12:02 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sat, 3 Aug 2013 17:41:03 +0000 (18:41 +0100)
Using devm_iio_device_alloc makes code simpler.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Stefan Roese <sr@denx.de>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/adc/spear_adc.c

index 736219c30308f4c0c433f080a82ff1a00a09023b..20f2d555e7cdc695ede30907abaf40e6561b170f 100644 (file)
@@ -300,11 +300,10 @@ static int spear_adc_probe(struct platform_device *pdev)
        int ret = -ENODEV;
        int irq;
 
-       iodev = iio_device_alloc(sizeof(struct spear_adc_info));
+       iodev = devm_iio_device_alloc(dev, sizeof(struct spear_adc_info));
        if (!iodev) {
                dev_err(dev, "failed allocating iio device\n");
-               ret = -ENOMEM;
-               goto errout1;
+               return -ENOMEM;
        }
 
        info = iio_priv(iodev);
@@ -318,8 +317,7 @@ static int spear_adc_probe(struct platform_device *pdev)
        info->adc_base_spear6xx = of_iomap(np, 0);
        if (!info->adc_base_spear6xx) {
                dev_err(dev, "failed mapping memory\n");
-               ret = -ENOMEM;
-               goto errout2;
+               return -ENOMEM;
        }
        info->adc_base_spear3xx =
                (struct adc_regs_spear3xx *)info->adc_base_spear6xx;
@@ -327,33 +325,33 @@ static int spear_adc_probe(struct platform_device *pdev)
        info->clk = clk_get(dev, NULL);
        if (IS_ERR(info->clk)) {
                dev_err(dev, "failed getting clock\n");
-               goto errout3;
+               goto errout1;
        }
 
        ret = clk_prepare_enable(info->clk);
        if (ret) {
                dev_err(dev, "failed enabling clock\n");
-               goto errout4;
+               goto errout2;
        }
 
        irq = platform_get_irq(pdev, 0);
        if ((irq < 0) || (irq >= NR_IRQS)) {
                dev_err(dev, "failed getting interrupt resource\n");
                ret = -EINVAL;
-               goto errout5;
+               goto errout3;
        }
 
        ret = devm_request_irq(dev, irq, spear_adc_isr, 0, MOD_NAME, info);
        if (ret < 0) {
                dev_err(dev, "failed requesting interrupt\n");
-               goto errout5;
+               goto errout3;
        }
 
        if (of_property_read_u32(np, "sampling-frequency",
                                 &info->sampling_freq)) {
                dev_err(dev, "sampling-frequency missing in DT\n");
                ret = -EINVAL;
-               goto errout5;
+               goto errout3;
        }
 
        /*
@@ -383,21 +381,18 @@ static int spear_adc_probe(struct platform_device *pdev)
 
        ret = iio_device_register(iodev);
        if (ret)
-               goto errout5;
+               goto errout3;
 
        dev_info(dev, "SPEAR ADC driver loaded, IRQ %d\n", irq);
 
        return 0;
 
-errout5:
-       clk_disable_unprepare(info->clk);
-errout4:
-       clk_put(info->clk);
 errout3:
-       iounmap(info->adc_base_spear6xx);
+       clk_disable_unprepare(info->clk);
 errout2:
-       iio_device_free(iodev);
+       clk_put(info->clk);
 errout1:
+       iounmap(info->adc_base_spear6xx);
        return ret;
 }
 
@@ -410,7 +405,6 @@ static int spear_adc_remove(struct platform_device *pdev)
        clk_disable_unprepare(info->clk);
        clk_put(info->clk);
        iounmap(info->adc_base_spear6xx);
-       iio_device_free(iodev);
 
        return 0;
 }