diff options
author | David Henningsson <david.henningsson@canonical.com> | 2012-04-20 10:01:46 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-07 08:53:22 -0700 |
commit | a0d6b4fe6b6847eed1a5780e1a4f69e93e8bb2bf (patch) | |
tree | 6b27b2480ab24b88757db43b0f4a2fe90fd03b3c | |
parent | c5ed4ce988daccdb0f08c28760475d6b13722498 (diff) | |
download | lwn-a0d6b4fe6b6847eed1a5780e1a4f69e93e8bb2bf.tar.gz lwn-a0d6b4fe6b6847eed1a5780e1a4f69e93e8bb2bf.zip |
ALSA: HDA: Add external mic quirk for Asus Zenbook UX31E
commit 5ac57550f279c3d991ef0b398681bcaca18169f7 upstream.
According to the reporter, external mic starts to work if the
laptop-dmic model is used. According to BIOS pin config, all
pins are consistent with the alc269vb_laptop_dmic fixup, except
for the external mic, which is not present.
BugLink: https://bugs.launchpad.net/bugs/950490
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index e5153eaec6ef..0960ecea6756 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -5402,6 +5402,7 @@ static const struct alc_fixup alc269_fixups[] = { }; static const struct snd_pci_quirk alc269_fixup_tbl[] = { + SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC), SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW), SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC), |