aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_realtek.c5
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)
14800enum { 14800enum {
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
14805static const struct alc_fixup alc269_fixups[] = { 14806static 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
14822static struct snd_pci_quirk alc269_fixup_tbl[] = { 14826static 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