projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49fa4d9
)
ASoC: wm8940: Fix a typo for the mask of setting WM8940_BCLKDIV
author
Axel Lin
<axel.lin@gmail.com>
Mon, 24 Oct 2011 03:33:55 +0000
(11:33 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Mon, 24 Oct 2011 12:09:50 +0000
(14:09 +0200)
The registers are 16 bits, thus remove an extra F for the mask.
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>
sound/soc/codecs/wm8940.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/wm8940.c
b/sound/soc/codecs/wm8940.c
index 3cc3bce61316a52f20b5b897e11518d30d4a9b92..fec3892b234c7d0aebc5921afba7fc8d38d06ff6 100644
(file)
--- a/
sound/soc/codecs/wm8940.c
+++ b/
sound/soc/codecs/wm8940.c
@@
-619,7
+619,7
@@
static int wm8940_set_dai_clkdiv(struct snd_soc_dai *codec_dai,
switch (div_id) {
case WM8940_BCLKDIV:
- reg = snd_soc_read(codec, WM8940_CLOCK) & 0xF
F
EF3;
+ reg = snd_soc_read(codec, WM8940_CLOCK) & 0xFEF3;
ret = snd_soc_write(codec, WM8940_CLOCK, reg | (div << 2));
break;
case WM8940_MCLKDIV: