diff options
author | Ondrej Zary <linux@rainbow-software.org> | 2009-11-27 18:19:28 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-12-03 18:23:20 +0100 |
commit | 1233faa891451dee9eaddd7f8a616ba1ddd77919 (patch) | |
tree | c198f253216b6099152cebe2e79005d5b5dcd9fe /sound/i2c | |
parent | d8ea23931ce83b56801976e6f1fa893462c1c477 (diff) |
ALSA: tea575x-tuner: fix mute
Fix mute state reporting in tea575x-tuner.
This fixes mute function in kradio on SF64-PCR radio card.
Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/i2c')
-rw-r--r-- | sound/i2c/other/tea575x-tuner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/i2c/other/tea575x-tuner.c b/sound/i2c/other/tea575x-tuner.c index d31c373e076d..c4c6ef73f9bf 100644 --- a/sound/i2c/other/tea575x-tuner.c +++ b/sound/i2c/other/tea575x-tuner.c @@ -225,7 +225,7 @@ static int vidioc_s_ctrl(struct file *file, void *priv, case V4L2_CID_AUDIO_MUTE: if (tea->ops->mute) { tea->ops->mute(tea, ctrl->value); - tea->mute = 1; + tea->mute = ctrl->value; return 0; } } |