Skip to content

Commit 31917b7

Browse files
KailangYangtiwai
authored andcommitted
ALSA: hda/realtek: Enable speaker pins for Medion E15443 platform
Speaker has no sound for Medion E15443. Added another speaker pins for Medion E15443 platform. Signed-off-by: Kailang Yang <[email protected]> Cc: <[email protected]> Link: https://lore.kernel.org/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent 7ba81e4 commit 31917b7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7779,6 +7779,7 @@ enum {
77797779
ALC256_FIXUP_CHROME_BOOK,
77807780
ALC245_FIXUP_CLEVO_NOISY_MIC,
77817781
ALC269_FIXUP_VAIO_VJFH52_MIC_NO_PRESENCE,
7782+
ALC233_FIXUP_MEDION_MTL_SPK,
77827783
};
77837784

77847785
/* A special fixup for Lenovo C940 and Yoga Duet 7;
@@ -10080,6 +10081,13 @@ static const struct hda_fixup alc269_fixups[] = {
1008010081
.chained = true,
1008110082
.chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
1008210083
},
10084+
[ALC233_FIXUP_MEDION_MTL_SPK] = {
10085+
.type = HDA_FIXUP_PINS,
10086+
.v.pins = (const struct hda_pintbl[]) {
10087+
{ 0x1b, 0x90170110 },
10088+
{ }
10089+
},
10090+
},
1008310091
};
1008410092

1008510093
static const struct hda_quirk alc269_fixup_tbl[] = {
@@ -10952,6 +10960,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
1095210960
SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
1095310961
SND_PCI_QUIRK(0x2782, 0x1701, "Infinix Y4 Max", ALC269VC_FIXUP_INFINIX_Y4_MAX),
1095410962
SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME),
10963+
SND_PCI_QUIRK(0x2782, 0x4900, "MEDION E15443", ALC233_FIXUP_MEDION_MTL_SPK),
1095510964
SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
1095610965
SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
1095710966
SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),

0 commit comments

Comments
 (0)