aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-10-26 17:04:08 -0400
committerTakashi Iwai <tiwai@suse.de>2011-10-26 17:05:46 -0400
commit5cdf745ebae0f5bcf9b798d8fd5cb57add592cc1 (patch)
tree1daddd6b77ca7986f286b2b86e31d94b050377ce /sound
parent8fa7ab48acb636d24669dab291807b487dfb2804 (diff)
ALSA: hda - Fix pin-config for ASUS W90V
The association numbers of surround/CLFE speaker pins aren't correctly mapped by the auto-parser. This patch fixes the CLFE speaker pin to the right assoc value (from 3 to 1). Tested-by: Nika Topolchanskaya <nanodesuu@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_realtek.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 4fab23f47402..011644b7c2d1 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -4112,6 +4112,7 @@ enum {
4112 PINFIX_LENOVO_Y530, 4112 PINFIX_LENOVO_Y530,
4113 PINFIX_PB_M5210, 4113 PINFIX_PB_M5210,
4114 PINFIX_ACER_ASPIRE_7736, 4114 PINFIX_ACER_ASPIRE_7736,
4115 PINFIX_ASUS_W90V,
4115}; 4116};
4116 4117
4117static const struct alc_fixup alc882_fixups[] = { 4118static const struct alc_fixup alc882_fixups[] = {
@@ -4143,10 +4144,18 @@ static const struct alc_fixup alc882_fixups[] = {
4143 .type = ALC_FIXUP_SKU, 4144 .type = ALC_FIXUP_SKU,
4144 .v.sku = ALC_FIXUP_SKU_IGNORE, 4145 .v.sku = ALC_FIXUP_SKU_IGNORE,
4145 }, 4146 },
4147 [PINFIX_ASUS_W90V] = {
4148 .type = ALC_FIXUP_PINS,
4149 .v.pins = (const struct alc_pincfg[]) {
4150 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
4151 { }
4152 }
4153 },
4146}; 4154};
4147 4155
4148static const struct snd_pci_quirk alc882_fixup_tbl[] = { 4156static const struct snd_pci_quirk alc882_fixup_tbl[] = {
4149 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210), 4157 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210),
4158 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", PINFIX_ASUS_W90V),
4150 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530), 4159 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530),
4151 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX), 4160 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
4152 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736), 4161 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736),