Skip to content

Commit a124458

Browse files
starnighttiwai
authored andcommitted
ALSA: hda/realtek - Enable the headset of Acer N50-600 with ALC662
A headset on the desktop like Acer N50-600 does not work, until quirk ALC662_FIXUP_ACER_NITRO_HEADSET_MODE is applied. Signed-off-by: Jian-Hong Pan <[email protected]> Cc: <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent d858c70 commit a124458

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8613,6 +8613,7 @@ enum {
86138613
ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
86148614
ALC671_FIXUP_HP_HEADSET_MIC2,
86158615
ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
8616+
ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
86168617
};
86178618

86188619
static const struct hda_fixup alc662_fixups[] = {
@@ -8967,6 +8968,16 @@ static const struct hda_fixup alc662_fixups[] = {
89678968
.chained = true,
89688969
.chain_id = ALC662_FIXUP_USI_FUNC
89698970
},
8971+
[ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
8972+
.type = HDA_FIXUP_PINS,
8973+
.v.pins = (const struct hda_pintbl[]) {
8974+
{ 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
8975+
{ 0x1b, 0x0221144f },
8976+
{ }
8977+
},
8978+
.chained = true,
8979+
.chain_id = ALC662_FIXUP_USI_FUNC
8980+
},
89708981
};
89718982

89728983
static const struct snd_pci_quirk alc662_fixup_tbl[] = {
@@ -8978,6 +8989,7 @@ static const struct snd_pci_quirk alc662_fixup_tbl[] = {
89788989
SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
89798990
SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
89808991
SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
8992+
SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
89818993
SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
89828994
SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
89838995
SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),

0 commit comments

Comments
 (0)