aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_realtek.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-11-09 06:55:18 -0500
committerTakashi Iwai <tiwai@suse.de>2011-11-09 09:11:16 -0500
commit177943a39aabec31cdbd529fd5f3060850f5aef9 (patch)
tree1ce8cb06f6a7f1655d49a1f61e1be4ecd75a9630 /sound/pci/hda/patch_realtek.c
parent596830ee1d2d9cf56e5efe0c020eb588beecae62 (diff)
ALSA: hda/realtek - Drop ALC882 asus-a7j and asus-a7m models
These models work fine with the auto-parser with the additional COEF setup. The iMac 7,1 (106b:3200) also uses the same quirk, so remove it too. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_realtek.c')
-rw-r--r--sound/pci/hda/patch_realtek.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 640cf2810f03..43c7aeac0492 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -4235,6 +4235,7 @@ enum {
4235 ALC882_FIXUP_ASUS_W90V, 4235 ALC882_FIXUP_ASUS_W90V,
4236 ALC889_FIXUP_VAIO_TT, 4236 ALC889_FIXUP_VAIO_TT,
4237 ALC888_FIXUP_EEE1601, 4237 ALC888_FIXUP_EEE1601,
4238 ALC882_FIXUP_EAPD,
4238}; 4239};
4239 4240
4240static const struct alc_fixup alc882_fixups[] = { 4241static const struct alc_fixup alc882_fixups[] = {
@@ -4287,14 +4288,25 @@ static const struct alc_fixup alc882_fixups[] = {
4287 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 }, 4288 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
4288 { } 4289 { }
4289 } 4290 }
4290 } 4291 },
4292 [ALC882_FIXUP_EAPD] = {
4293 .type = ALC_FIXUP_VERBS,
4294 .v.verbs = (const struct hda_verb[]) {
4295 /* change to EAPD mode */
4296 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4297 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
4298 { }
4299 }
4300 },
4291}; 4301};
4292 4302
4293static const struct snd_pci_quirk alc882_fixup_tbl[] = { 4303static const struct snd_pci_quirk alc882_fixup_tbl[] = {
4294 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210), 4304 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
4305 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
4295 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V), 4306 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
4296 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601), 4307 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
4297 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530), 4308 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
4309 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD), /* codec SSID */
4298 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX), 4310 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
4299 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736), 4311 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
4300 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), 4312 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),