aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm9081.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm9081.c b/sound/soc/codecs/wm9081.c
index c7060775e88b..e5055b28c638 100644
--- a/sound/soc/codecs/wm9081.c
+++ b/sound/soc/codecs/wm9081.c
@@ -590,6 +590,10 @@ static int wm9081_set_fll(struct snd_soc_codec *codec, int fll_id,
590 reg5 |= fll_div.fll_clk_ref_div << WM9081_FLL_CLK_REF_DIV_SHIFT; 590 reg5 |= fll_div.fll_clk_ref_div << WM9081_FLL_CLK_REF_DIV_SHIFT;
591 snd_soc_write(codec, WM9081_FLL_CONTROL_5, reg5); 591 snd_soc_write(codec, WM9081_FLL_CONTROL_5, reg5);
592 592
593 /* Set gain to the recommended value */
594 snd_soc_update_bits(codec, WM9081_FLL_CONTROL_4,
595 WM9081_FLL_GAIN_MASK, 0);
596
593 /* Enable the FLL */ 597 /* Enable the FLL */
594 snd_soc_write(codec, WM9081_FLL_CONTROL_1, reg1 | WM9081_FLL_ENA); 598 snd_soc_write(codec, WM9081_FLL_CONTROL_1, reg1 | WM9081_FLL_ENA);
595 599