FROMLIST: thermal: rockchip: disable thermal->clk in err case
authorShawn Lin <shawn.lin@rock-chips.com>
Mon, 18 Apr 2016 03:35:53 +0000 (11:35 +0800)
committerGerrit Code Review <gerrit@rock-chips.com>
Mon, 18 Apr 2016 09:20:04 +0000 (17:20 +0800)
Disable thermal->clk when enabling pclk fails in
resume routine.

Change-Id: I7d8780be04891bf4cddf1ba970eae2a2f14ec7ac
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: Caesar Wang <wxt@rock-chips.com>
Signed-off-by: Caesar Wang <wxt@rock-chips.com>
(am from https://patchwork.kernel.org/patch/8867151/)

drivers/thermal/rockchip_thermal.c

index dcd36db4e10419566fbd3172501a35afa6779633..39e2eec57fff236c40a9ed7003dd6ba32407f56a 100644 (file)
@@ -1154,8 +1154,10 @@ static int __maybe_unused rockchip_thermal_resume(struct device *dev)
                return error;
 
        error = clk_enable(thermal->pclk);
-       if (error)
+       if (error) {
+               clk_disable(thermal->clk);
                return error;
+       }
 
        rockchip_thermal_reset_controller(thermal->reset);