projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
370f464
)
ASoC: wm8991: Fix wrong bit setting for WM8991_POWER_MANAGEMENT_2
author
Axel Lin
<
[email protected]
>
Fri, 14 Oct 2011 04:08:00 +0000
(12:08 +0800)
committer
Mark Brown
<
[email protected]
>
Fri, 14 Oct 2011 19:29:04 +0000
(20:29 +0100)
If (fakepower & ((1 << WM8991_INMIXR_PWR_BIT)|(1 << WM8991_AINRMUX_PWR_BIT))))
is false, we should clear WM8991_AINR_ENA bits instead of WM8991_AINL_ENA.
Signed-off-by: Axel Lin <
[email protected]
>
Signed-off-by: Mark Brown <
[email protected]
>
sound/soc/codecs/wm8991.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/wm8991.c
b/sound/soc/codecs/wm8991.c
index 08d64a6303e00ba65f16f1ef6ec9af47f781f843..708d251019a3caa7da913edde1a987c2dd147778 100644
(file)
--- a/
sound/soc/codecs/wm8991.c
+++ b/
sound/soc/codecs/wm8991.c
@@
-393,7
+393,7
@@
static int inmixer_event(struct snd_soc_dapm_widget *w,
(1 << WM8991_AINRMUX_PWR_BIT)))
reg |= WM8991_AINR_ENA;
else
- reg &= ~WM8991_AIN
L
_ENA;
+ reg &= ~WM8991_AIN
R
_ENA;
snd_soc_write(w->codec, WM8991_POWER_MANAGEMENT_2, reg);
return 0;