mfd: twl6040: Disable and unprepare clk32k in twl6040_power() error path
authorJavier Martinez Canillas <javier@osg.samsung.com>
Wed, 20 Apr 2016 15:16:37 +0000 (11:16 -0400)
committerLee Jones <lee.jones@linaro.org>
Mon, 9 May 2016 07:23:52 +0000 (08:23 +0100)
The clk32k clock is prepared and enabled in twl6040_power() but the clock
is left enabled in case of an error while it should be disable/unprepared.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/twl6040.c

index 85cc32a..852d587 100644 (file)
@@ -304,6 +304,7 @@ int twl6040_power(struct twl6040 *twl6040, int on)
                        /* use automatic power-up sequence */
                        ret = twl6040_power_up_automatic(twl6040);
                        if (ret) {
+                               clk_disable_unprepare(twl6040->clk32k);
                                twl6040->power_count = 0;
                                goto out;
                        }
@@ -311,6 +312,7 @@ int twl6040_power(struct twl6040 *twl6040, int on)
                        /* use manual power-up sequence */
                        ret = twl6040_power_up_manual(twl6040);
                        if (ret) {
+                               clk_disable_unprepare(twl6040->clk32k);
                                twl6040->power_count = 0;
                                goto out;
                        }