iio: adc: vf610: Disable the regulator on error
authorFabio Estevam <fabio.estevam@freescale.com>
Fri, 3 Oct 2014 01:25:24 +0000 (22:25 -0300)
committerJonathan Cameron <jic23@kernel.org>
Sat, 4 Oct 2014 11:30:26 +0000 (12:30 +0100)
If clk_prepare_enable() fails we should disable the regulator that was
previously enabled.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/adc/vf610_adc.c

index ebb73f5d3c3a91f642500d1da3cbb3ff731dc2a0..767e9b975f0007312ef8e8a72781066f4cb989a3 100644 (file)
@@ -704,11 +704,15 @@ static int vf610_adc_resume(struct device *dev)
 
        ret = clk_prepare_enable(info->clk);
        if (ret)
-               return ret;
+               goto disable_reg;
 
        vf610_adc_hw_init(info);
 
        return 0;
+
+disable_reg:
+       regulator_disable(info->vref);
+       return ret;
 }
 #endif