aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_realtek.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-08-18 10:02:24 -0400
committerTakashi Iwai <tiwai@suse.de>2011-08-18 10:02:24 -0400
commit2996bdbaa40c52c76ec9b981dfa1c9f3a6191fc3 (patch)
treebb38c4cee07f3aafc83d7856662342a35eeb0e75 /sound/pci/hda/patch_realtek.c
parent91baa2c7170ffaec7d7267923ff025036f4f5c61 (diff)
ALSA: hda - Remove ALC662 eeepc-p701 and ecs models
These are confirmed to work with the auto-parser with pincfg fixups. 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.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 58717ab324fa..d330e9717432 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -5123,6 +5123,7 @@ enum {
5123 ALC662_FIXUP_CZC_P10T, 5123 ALC662_FIXUP_CZC_P10T,
5124 ALC662_FIXUP_SKU_IGNORE, 5124 ALC662_FIXUP_SKU_IGNORE,
5125 ALC662_FIXUP_HP_RP5800, 5125 ALC662_FIXUP_HP_RP5800,
5126 ALC662_FIXUP_ECS,
5126}; 5127};
5127 5128
5128static const struct alc_fixup alc662_fixups[] = { 5129static const struct alc_fixup alc662_fixups[] = {
@@ -5164,13 +5165,25 @@ static const struct alc_fixup alc662_fixups[] = {
5164 .chained = true, 5165 .chained = true,
5165 .chain_id = ALC662_FIXUP_SKU_IGNORE 5166 .chain_id = ALC662_FIXUP_SKU_IGNORE
5166 }, 5167 },
5168 [ALC662_FIXUP_ECS] = {
5169 .type = ALC_FIXUP_PINS,
5170 .v.pins = (const struct alc_pincfg[]) {
5171 { 0x14, 0x99130110 }, /* speaker */
5172 { 0x18, 0x01a19820 }, /* mic */
5173 { 0x19, 0x99a3092f }, /* int-mic */
5174 { 0x1b, 0x0121401f }, /* HP out */
5175 { }
5176 },
5177 },
5167}; 5178};
5168 5179
5169static const struct snd_pci_quirk alc662_fixup_tbl[] = { 5180static const struct snd_pci_quirk alc662_fixup_tbl[] = {
5181 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ECS),
5170 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE), 5182 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
5171 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE), 5183 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
5172 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE), 5184 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
5173 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), 5185 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
5186 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ECS),
5174 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD), 5187 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
5175 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), 5188 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
5176 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), 5189 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),