diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-10-20 22:44:07 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-10-22 05:34:59 -0400 |
commit | 3205e6629bc0eb747fb7d1b4b8fec00b7b919e58 (patch) | |
tree | d3e0e59326a46b4ee8e5899d498a85f670a81187 /sound/soc | |
parent | 52082d8f562bb4ed4045ea691a3ec1f44d828eab (diff) |
ASoC: wm8996: Fix wrong mask for setting WM8996_AIF_CLOCKING_2
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: stable@kernel.org
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/wm8996.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8996.c b/sound/soc/codecs/wm8996.c index 1d7b1746bf3b..645c980d6b80 100644 --- a/sound/soc/codecs/wm8996.c +++ b/sound/soc/codecs/wm8996.c | |||
@@ -1920,7 +1920,7 @@ static int wm8996_hw_params(struct snd_pcm_substream *substream, | |||
1920 | snd_soc_update_bits(codec, lrclk_reg, WM8996_AIF1RX_RATE_MASK, | 1920 | snd_soc_update_bits(codec, lrclk_reg, WM8996_AIF1RX_RATE_MASK, |
1921 | lrclk); | 1921 | lrclk); |
1922 | snd_soc_update_bits(codec, WM8996_AIF_CLOCKING_2, | 1922 | snd_soc_update_bits(codec, WM8996_AIF_CLOCKING_2, |
1923 | WM8996_DSP1_DIV_SHIFT << dsp_shift, dsp); | 1923 | WM8996_DSP1_DIV_MASK << dsp_shift, dsp); |
1924 | 1924 | ||
1925 | return 0; | 1925 | return 0; |
1926 | } | 1926 | } |