diff options
author | David Henningsson <david.henningsson@canonical.com> | 2010-12-15 02:01:46 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-12-15 02:17:30 -0500 |
commit | fe67b24010c66a14d84117ac67d23ed1bcb18a71 (patch) | |
tree | 16d33794ccc8ed58243adc4d466e603ad4695a3d /sound | |
parent | 8a96b1e02029aa512199b1b6d281dcede9ed81f1 (diff) |
ALSA: HDA: Fix auto-mute on Lenovo Edge 14
BugLink: http://launchpad.net/bugs/690530
The SKU value of this machine dictates that auto-mute should be
disabled. Since the SKU value is similar to the PCI SSID, the most
likely conclusion is that the SKU value should be ignored.
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 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 2d7d7de8498a..e5fbd00293f7 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
@@ -14800,6 +14800,7 @@ static int alc269_resume(struct hda_codec *codec) | |||
14800 | enum { | 14800 | enum { |
14801 | ALC269_FIXUP_SONY_VAIO, | 14801 | ALC269_FIXUP_SONY_VAIO, |
14802 | ALC269_FIXUP_DELL_M101Z, | 14802 | ALC269_FIXUP_DELL_M101Z, |
14803 | ALC269_FIXUP_LENOVO_EDGE14, | ||
14803 | }; | 14804 | }; |
14804 | 14805 | ||
14805 | static const struct alc_fixup alc269_fixups[] = { | 14806 | static const struct alc_fixup alc269_fixups[] = { |
@@ -14817,11 +14818,15 @@ static const struct alc_fixup alc269_fixups[] = { | |||
14817 | {} | 14818 | {} |
14818 | } | 14819 | } |
14819 | }, | 14820 | }, |
14821 | [ALC269_FIXUP_LENOVO_EDGE14] = { | ||
14822 | .sku = ALC_FIXUP_SKU_IGNORE, | ||
14823 | }, | ||
14820 | }; | 14824 | }; |
14821 | 14825 | ||
14822 | static struct snd_pci_quirk alc269_fixup_tbl[] = { | 14826 | static struct snd_pci_quirk alc269_fixup_tbl[] = { |
14823 | SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO), | 14827 | SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO), |
14824 | SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), | 14828 | SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), |
14829 | SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_LENOVO_EDGE14), | ||
14825 | {} | 14830 | {} |
14826 | }; | 14831 | }; |
14827 | 14832 | ||