aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-02-13 06:03:25 -0500
committerTakashi Iwai <tiwai@suse.de>2012-02-13 06:07:59 -0500
commit1565cc358585be40608b46f18f7ac431a1aae2bc (patch)
treea182ce908a9513dcb5619054e09782dcbb5acde6 /sound/pci
parente652f4c861fb7f1f59ff0828db0d85578471932d (diff)
ALSA: hda - Add another jack-detection suppression for ASUS ALC892
Add the jack-detect suppression for an ASUS machine with ALC892 codec. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=42655 Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/patch_realtek.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index c6305984816c..30ef877e6284 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -5875,6 +5875,7 @@ enum {
5875 ALC662_FIXUP_ASUS_MODE6, 5875 ALC662_FIXUP_ASUS_MODE6,
5876 ALC662_FIXUP_ASUS_MODE7, 5876 ALC662_FIXUP_ASUS_MODE7,
5877 ALC662_FIXUP_ASUS_MODE8, 5877 ALC662_FIXUP_ASUS_MODE8,
5878 ALC662_FIXUP_NO_JACK_DETECT,
5878}; 5879};
5879 5880
5880static const struct alc_fixup alc662_fixups[] = { 5881static const struct alc_fixup alc662_fixups[] = {
@@ -6020,6 +6021,10 @@ static const struct alc_fixup alc662_fixups[] = {
6020 .chained = true, 6021 .chained = true,
6021 .chain_id = ALC662_FIXUP_SKU_IGNORE 6022 .chain_id = ALC662_FIXUP_SKU_IGNORE
6022 }, 6023 },
6024 [ALC662_FIXUP_NO_JACK_DETECT] = {
6025 .type = ALC_FIXUP_FUNC,
6026 .v.func = alc_fixup_no_jack_detect,
6027 },
6023}; 6028};
6024 6029
6025static const struct snd_pci_quirk alc662_fixup_tbl[] = { 6030static const struct snd_pci_quirk alc662_fixup_tbl[] = {
@@ -6028,6 +6033,7 @@ static const struct snd_pci_quirk alc662_fixup_tbl[] = {
6028 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE), 6033 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
6029 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE), 6034 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
6030 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), 6035 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
6036 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
6031 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2), 6037 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
6032 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD), 6038 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
6033 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), 6039 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),