diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-10-21 10:44:07 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-10-22 10:34:59 +0100 |
commit | 3205e6629bc0eb747fb7d1b4b8fec00b7b919e58 (patch) | |
tree | d3e0e59326a46b4ee8e5899d498a85f670a81187 /sound | |
parent | 52082d8f562bb4ed4045ea691a3ec1f44d828eab (diff) | |
download | linux-3.10-3205e6629bc0eb747fb7d1b4b8fec00b7b919e58.tar.gz linux-3.10-3205e6629bc0eb747fb7d1b4b8fec00b7b919e58.tar.bz2 linux-3.10-3205e6629bc0eb747fb7d1b4b8fec00b7b919e58.zip |
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')
-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 1d7b1746bf3..645c980d6b8 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, snd_soc_update_bits(codec, lrclk_reg, WM8996_AIF1RX_RATE_MASK, lrclk); snd_soc_update_bits(codec, WM8996_AIF_CLOCKING_2, - WM8996_DSP1_DIV_SHIFT << dsp_shift, dsp); + WM8996_DSP1_DIV_MASK << dsp_shift, dsp); return 0; } |