diff options
author | Shine Liu <shinel@foxmail.com> | 2009-08-17 18:52:01 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-08-17 12:56:57 +0100 |
commit | 0c093fb5421a648fae46fce17277bdb358fe017b (patch) | |
tree | d0ea03d974bf023eb425e5e7d560f45b3d6b746e /sound/soc | |
parent | 471e3dec3abe2d41e8c742046353fcb01bc2459e (diff) | |
download | op-kernel-dev-0c093fb5421a648fae46fce17277bdb358fe017b.zip op-kernel-dev-0c093fb5421a648fae46fce17277bdb358fe017b.tar.gz |
ASoC: UDA134X: Fix mistaken mute/unmute code
There is a mistake in current uda134x_mute function: mute_reg has been
changed in line 162 or line 164, so uda134x_write should write
"mute_reg" but not "mute_reg & ~(1<<2)" to
UDA134X_DATA010.
Signed-off-by: Shine Liu <shinel@foxmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/uda134x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/uda134x.c b/sound/soc/codecs/uda134x.c index 269b108..c33b92e 100644 --- a/sound/soc/codecs/uda134x.c +++ b/sound/soc/codecs/uda134x.c @@ -163,7 +163,7 @@ static int uda134x_mute(struct snd_soc_dai *dai, int mute) else mute_reg &= ~(1<<2); - uda134x_write(codec, UDA134X_DATA010, mute_reg & ~(1<<2)); + uda134x_write(codec, UDA134X_DATA010, mute_reg); return 0; } |