Skip to content

Commit 33bdee1

Browse files
drosdecktiwai
authored andcommitted
ALSA: hda/realtek: Enable headset Mic on Positivo P15X
Positivo P15X is equipped with ALC269VC, and needs a fix to make the headset mic to work. Also must to limits the internal microphone boost. Signed-off-by: Edson Juliano Drosdeck <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent 7213851 commit 33bdee1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8032,6 +8032,7 @@ enum {
80328032
ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2,
80338033
ALC285_FIXUP_ASUS_GA605K_HEADSET_MIC,
80348034
ALC285_FIXUP_ASUS_GA605K_I2C_SPEAKER2_TO_DAC1,
8035+
ALC269_FIXUP_POSITIVO_P15X_HEADSET_MIC,
80358036
};
80368037

80378038
/* A special fixup for Lenovo C940 and Yoga Duet 7;
@@ -10430,6 +10431,12 @@ static const struct hda_fixup alc269_fixups[] = {
1043010431
.type = HDA_FIXUP_FUNC,
1043110432
.v.func = alc285_fixup_speaker2_to_dac1,
1043210433
},
10434+
[ALC269_FIXUP_POSITIVO_P15X_HEADSET_MIC] = {
10435+
.type = HDA_FIXUP_FUNC,
10436+
.v.func = alc269_fixup_limit_int_mic_boost,
10437+
.chained = true,
10438+
.chain_id = ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
10439+
},
1043310440
};
1043410441

1043510442
static const struct hda_quirk alc269_fixup_tbl[] = {
@@ -11406,6 +11413,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
1140611413
SND_PCI_QUIRK(0x2782, 0x0214, "VAIO VJFE-CL", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1140711414
SND_PCI_QUIRK(0x2782, 0x0228, "Infinix ZERO BOOK 13", ALC269VB_FIXUP_INFINIX_ZERO_BOOK_13),
1140811415
SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
11416+
SND_PCI_QUIRK(0x2782, 0x1407, "Positivo P15X", ALC269_FIXUP_POSITIVO_P15X_HEADSET_MIC),
1140911417
SND_PCI_QUIRK(0x2782, 0x1701, "Infinix Y4 Max", ALC269VC_FIXUP_INFINIX_Y4_MAX),
1141011418
SND_PCI_QUIRK(0x2782, 0x1705, "MEDION E15433", ALC269VC_FIXUP_INFINIX_Y4_MAX),
1141111419
SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME),

0 commit comments

Comments
 (0)