diff options
author | David Henningsson <david.henningsson@canonical.com> | 2011-04-07 11:43:00 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-14 13:02:10 -0700 |
commit | 2743bc470c3a9c5f0bfdc085d6ed7b716865bc00 (patch) | |
tree | 5b57516b5d9ed936456b89a7c16fbea9c3435900 /sound | |
parent | 2e6de29f28f83051b83856237e331f6552f1276b (diff) |
ALSA: HDA: Fix single internal mic on ALC275 (Sony Vaio VPCSB1C5E)
commit 262ac22d21ee2bf3e1655b2e5e45cc94b356e62f upstream.
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.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@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 d21ce8bc919..e164a4bdf48 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -14191,7 +14191,7 @@ static hda_nid_t alc269vb_capsrc_nids[1] = { }; static hda_nid_t alc269_adc_candidates[] = { - 0x08, 0x09, 0x07, + 0x08, 0x09, 0x07, 0x11, }; #define alc269_modes alc260_modes |