]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Input: twl4030-vibra - correct the power down sequence
authorPeter Ujfalusi <peter.ujfalusi@nokia.com>
Sat, 22 May 2010 07:57:26 +0000 (00:57 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Sat, 22 May 2010 07:58:06 +0000 (00:58 -0700)
It is better to turn off the first APLL, than the codec.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
drivers/input/misc/twl4030-vibra.c

index fee9eac8e04ab830fbfb4fab89ef79b10138187a..4f9b2afc24e820d75b819555f7f667f94bd73f69 100644 (file)
@@ -90,8 +90,8 @@ static void vibra_disable(struct vibra_info *info)
        twl_i2c_write_u8(TWL4030_MODULE_AUDIO_VOICE,
                         (reg & ~TWL4030_VIBRA_EN), TWL4030_REG_VIBRA_CTL);
 
-       twl4030_codec_disable_resource(TWL4030_CODEC_RES_POWER);
        twl4030_codec_disable_resource(TWL4030_CODEC_RES_APLL);
+       twl4030_codec_disable_resource(TWL4030_CODEC_RES_POWER);
 
        info->enabled = false;
 }