]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
iio: adc: rockchip_saradc: fix missing clk_disable_unprepare() on error in rockchip_s...
authorQinglang Miao <miaoqinglang@huawei.com>
Tue, 3 Nov 2020 12:07:43 +0000 (20:07 +0800)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Thu, 3 Dec 2020 19:40:31 +0000 (19:40 +0000)
Fix the missing clk_disable_unprepare() of info->pclk
before return from rockchip_saradc_resume in the error
handling case when fails to prepare and enable info->clk.

Suggested-by: Robin Murphy <robin.murphy@arm.com>
Fixes: 44d6f2ef94f9 ("iio: adc: add driver for Rockchip saradc")
Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com>
Cc: <Stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20201103120743.110662-1-miaoqinglang@huawei.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/rockchip_saradc.c

index 1f3d7d639d378ee49dfc87bb68c736464ed5936a..12584f1631d88887c8835e366f82a602ddc0a2b2 100644 (file)
@@ -462,7 +462,7 @@ static int rockchip_saradc_resume(struct device *dev)
 
        ret = clk_prepare_enable(info->clk);
        if (ret)
-               return ret;
+               clk_disable_unprepare(info->pclk);
 
        return ret;
 }