aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_realtek.c
diff options
context:
space:
mode:
authorDavid Henningsson <david.henningsson@canonical.com>2010-12-15 03:18:18 -0500
committerTakashi Iwai <tiwai@suse.de>2010-12-15 03:45:36 -0500
commitac612407932be18697b5ae9da0a80f138b8bea8e (patch)
treeb5e80397157f9af5c040d765fde7884e47ded577 /sound/pci/hda/patch_realtek.c
parentfe67b24010c66a14d84117ac67d23ed1bcb18a71 (diff)
ALSA: HDA: Enable subwoofer on Asus G73Jw
Set default association/sequence right on pin 0x17 in order for the automatic parser to recognize the subwoofer correctly. Signed-off-by: David Henningsson <david.henningsson@canonical.com> 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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index e5fbd00293f7..8e7948f56106 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -14801,6 +14801,7 @@ 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 ALC269_FIXUP_LENOVO_EDGE14,
14804 ALC269_FIXUP_ASUS_G73JW,
14804}; 14805};
14805 14806
14806static const struct alc_fixup alc269_fixups[] = { 14807static const struct alc_fixup alc269_fixups[] = {
@@ -14821,12 +14822,19 @@ static const struct alc_fixup alc269_fixups[] = {
14821 [ALC269_FIXUP_LENOVO_EDGE14] = { 14822 [ALC269_FIXUP_LENOVO_EDGE14] = {
14822 .sku = ALC_FIXUP_SKU_IGNORE, 14823 .sku = ALC_FIXUP_SKU_IGNORE,
14823 }, 14824 },
14825 [ALC269_FIXUP_ASUS_G73JW] = {
14826 .pins = (const struct alc_pincfg[]) {
14827 { 0x17, 0x99130111 }, /* subwoofer */
14828 { }
14829 }
14830 },
14824}; 14831};
14825 14832
14826static struct snd_pci_quirk alc269_fixup_tbl[] = { 14833static struct snd_pci_quirk alc269_fixup_tbl[] = {
14827 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO), 14834 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
14828 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), 14835 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
14829 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_LENOVO_EDGE14), 14836 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_LENOVO_EDGE14),
14837 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
14830 {} 14838 {}
14831}; 14839};
14832 14840