mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-17 06:48:07 +00:00
189ce92b4c
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
53 lines
1.8 KiB
Diff
53 lines
1.8 KiB
Diff
From 5dadca9a4cd269970d942d9e235320f30c425b31 Mon Sep 17 00:00:00 2001
|
|
From: Takashi Iwai <tiwai@suse.de>
|
|
Date: Mon, 13 Feb 2012 12:03:25 +0100
|
|
Subject: [PATCH 43/67] ALSA: hda - Add another jack-detection suppression for
|
|
ASUS ALC892
|
|
|
|
commit 1565cc358585be40608b46f18f7ac431a1aae2bc upstream.
|
|
|
|
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>
|
|
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
|
|
---
|
|
sound/pci/hda/patch_realtek.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
|
|
index d4616fb..ba8a877 100644
|
|
--- a/sound/pci/hda/patch_realtek.c
|
|
+++ b/sound/pci/hda/patch_realtek.c
|
|
@@ -5594,6 +5594,7 @@ enum {
|
|
ALC662_FIXUP_ASUS_MODE6,
|
|
ALC662_FIXUP_ASUS_MODE7,
|
|
ALC662_FIXUP_ASUS_MODE8,
|
|
+ ALC662_FIXUP_NO_JACK_DETECT,
|
|
};
|
|
|
|
static const struct alc_fixup alc662_fixups[] = {
|
|
@@ -5739,6 +5740,10 @@ static const struct alc_fixup alc662_fixups[] = {
|
|
.chained = true,
|
|
.chain_id = ALC662_FIXUP_SKU_IGNORE
|
|
},
|
|
+ [ALC662_FIXUP_NO_JACK_DETECT] = {
|
|
+ .type = ALC_FIXUP_FUNC,
|
|
+ .v.func = alc_fixup_no_jack_detect,
|
|
+ },
|
|
};
|
|
|
|
static const struct snd_pci_quirk alc662_fixup_tbl[] = {
|
|
@@ -5747,6 +5752,7 @@ static const struct snd_pci_quirk alc662_fixup_tbl[] = {
|
|
SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
|
|
SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
|
|
SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
|
|
+ SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
|
|
SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
|
|
SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
|
|
SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
|
|
--
|
|
1.7.9.5
|
|
|