diff options
author | Herton Ronaldo Krzesinski <herton@mandriva.com.br> | 2010-11-24 21:08:01 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-11-25 02:23:07 -0500 |
commit | 7167594a3da7dcc33203b85d62e519594baee390 (patch) | |
tree | fb196eb8d2daf241306d29b0f4f4a87c6f3ce119 /sound | |
parent | cc1c452e509aefc28f7ad2deed75bc69d4f915f7 (diff) |
ALSA: hda - Fix ALC660-VD/ALC861-VD capture/playback mixers
The mixer nids passed to alc_auto_create_input_ctls are wrong: 0x15 is
a pin, and 0x09 is the ADC on both ALC660-VD/ALC861-VD. Thus with
current code, input playback volume/switches and input source mixer
controls are not created, and recording doesn't work. Select correct
mixers, 0x0b (input playback mixer) and 0x22 (capture source mixer).
Reference: https://qa.mandriva.com/show_bug.cgi?id=61159
Signed-off-by: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Cc: <stable@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index b0e6b8b47fa9..81a2a49b862c 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
@@ -16943,7 +16943,7 @@ static struct alc_config_preset alc861vd_presets[] = { | |||
16943 | static int alc861vd_auto_create_input_ctls(struct hda_codec *codec, | 16943 | static int alc861vd_auto_create_input_ctls(struct hda_codec *codec, |
16944 | const struct auto_pin_cfg *cfg) | 16944 | const struct auto_pin_cfg *cfg) |
16945 | { | 16945 | { |
16946 | return alc_auto_create_input_ctls(codec, cfg, 0x15, 0x09, 0); | 16946 | return alc_auto_create_input_ctls(codec, cfg, 0x0b, 0x22, 0); |
16947 | } | 16947 | } |
16948 | 16948 | ||
16949 | 16949 | ||