projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52082d8
)
ASoC: wm8996: Fix wrong mask for setting WM8996_AIF_CLOCKING_2
author
Axel Lin
<axel.lin@gmail.com>
Fri, 21 Oct 2011 02:44:07 +0000
(10:44 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Sat, 22 Oct 2011 09:34:59 +0000
(10:34 +0100)
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
sound/soc/codecs/wm8996.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/wm8996.c
b/sound/soc/codecs/wm8996.c
index
1d7b174
..
645c980
100644
(file)
--- 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;
}