diff options
author | David Henningsson <david.henningsson@canonical.com> | 2011-04-07 05:43:00 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-04-07 06:12:00 -0400 |
commit | 262ac22d21ee2bf3e1655b2e5e45cc94b356e62f (patch) | |
tree | 92926b7abebac8ebc311e3eeb70864777b42bb7b /sound | |
parent | 1f348522844bb1f6e7b10d50b9e8aa89a2511b09 (diff) |
ALSA: HDA: Fix single internal mic on ALC275 (Sony Vaio VPCSB1C5E)
In cases where there is only one internal mic connected to ADC 0x11,
alc275_setup_dual_adc won't handle the case, so we need to add the
ADC node to the array of candidates.
Cc: stable@kernel.org
BugLink: http://bugs.launchpad.net/bugs/752792
Reported-by: Vincenzo Pii
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
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 12c6f4508c54..d9f1ef7dac2e 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
@@ -14124,7 +14124,7 @@ static hda_nid_t alc269vb_capsrc_nids[1] = { | |||
14124 | }; | 14124 | }; |
14125 | 14125 | ||
14126 | static hda_nid_t alc269_adc_candidates[] = { | 14126 | static hda_nid_t alc269_adc_candidates[] = { |
14127 | 0x08, 0x09, 0x07, | 14127 | 0x08, 0x09, 0x07, 0x11, |
14128 | }; | 14128 | }; |
14129 | 14129 | ||
14130 | #define alc269_modes alc260_modes | 14130 | #define alc269_modes alc260_modes |