]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
ASoC: arizona: Wait for resume before enabling FLL
authorRichard Fitzgerald <rf@opensource.wolfsonmicro.com>
Thu, 25 Aug 2016 10:39:32 +0000 (11:39 +0100)
committerMark Brown <broonie@kernel.org>
Thu, 1 Sep 2016 20:34:55 +0000 (21:34 +0100)
When enabling an FLL use pm_runtime_get_sync() instead of
pm_runtime_get() to ensure that all the register settings
have been written out and the codec is powered-up before
we write the enable bit.

Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/arizona.c

index 0fc3b4b615522fa820edefe900b7f32e509806ee..ccb3ca2f77a44c0a14915bbb9cc947d46cb64b57 100644 (file)
@@ -2268,7 +2268,7 @@ static int arizona_enable_fll(struct arizona_fll *fll)
                                         ARIZONA_FLL1_SYNC_BW);
 
        if (!already_enabled)
-               pm_runtime_get(arizona->dev);
+               pm_runtime_get_sync(arizona->dev);
 
        regmap_update_bits_async(arizona->regmap, fll->base + 1,
                                 ARIZONA_FLL1_ENA, ARIZONA_FLL1_ENA);