Skip to content

Commit 9b51fe3

Browse files
daedalus81tiwai
authored andcommitted
ALSA: hda - On-board speaker fixup on ACER Veriton
On Acer Veriton machines, codec with subsystem-id 0x1b0a01b8 the port at 0x15 is configured by default as an Internal Speaker (0x90170120). However, no physical is speaker installed on-board. This patch adds a quirk which disables the physical connection on this pin. BugLink: https://bugs.launchpad.net/bugs/1607647 Signed-off-by: Shrirang Bagul <[email protected]> Cc: <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
1 parent dd9aa33 commit 9b51fe3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

sound/pci/hda/patch_realtek.c

+9
Original file line numberDiff line numberDiff line change
@@ -6571,6 +6571,7 @@ enum {
65716571
ALC668_FIXUP_ASUS_Nx51,
65726572
ALC891_FIXUP_HEADSET_MODE,
65736573
ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
6574+
ALC662_FIXUP_ACER_VERITON,
65746575
};
65756576

65766577
static const struct hda_fixup alc662_fixups[] = {
@@ -6840,6 +6841,13 @@ static const struct hda_fixup alc662_fixups[] = {
68406841
.chained = true,
68416842
.chain_id = ALC891_FIXUP_HEADSET_MODE
68426843
},
6844+
[ALC662_FIXUP_ACER_VERITON] = {
6845+
.type = HDA_FIXUP_PINS,
6846+
.v.pins = (const struct hda_pintbl[]) {
6847+
{ 0x15, 0x50170120 }, /* no internal speaker */
6848+
{ }
6849+
}
6850+
},
68436851
};
68446852

68456853
static const struct snd_pci_quirk alc662_fixup_tbl[] = {
@@ -6878,6 +6886,7 @@ static const struct snd_pci_quirk alc662_fixup_tbl[] = {
68786886
SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
68796887
SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
68806888
SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
6889+
SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
68816890
SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
68826891

68836892
#if 0

0 commit comments

Comments
 (0)