Skip to content

Commit abaa227

Browse files
anissetiwai
authored andcommitted
ALSA: hda/realtek - fix headset mic detection for MSI MS-B120
MSI Cubi MS-B120 needs the same fixup as the Gigabyte BXBT-2807 for its mic to work. They both use a single 3-way jack for both mic and headset with an ALC283 codec, with the same pins used. Cc: Daniel Drake <[email protected]> Signed-off-by: Anisse Astier <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
1 parent b027d11 commit abaa227

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4828,7 +4828,7 @@ enum {
48284828
ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
48294829
ALC292_FIXUP_TPT440_DOCK,
48304830
ALC292_FIXUP_TPT440,
4831-
ALC283_FIXUP_BXBT2807_MIC,
4831+
ALC283_FIXUP_HEADSET_MIC,
48324832
ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED,
48334833
ALC282_FIXUP_ASPIRE_V5_PINS,
48344834
ALC280_FIXUP_HP_GPIO4,
@@ -5321,7 +5321,7 @@ static const struct hda_fixup alc269_fixups[] = {
53215321
.chained = true,
53225322
.chain_id = ALC292_FIXUP_TPT440_DOCK,
53235323
},
5324-
[ALC283_FIXUP_BXBT2807_MIC] = {
5324+
[ALC283_FIXUP_HEADSET_MIC] = {
53255325
.type = HDA_FIXUP_PINS,
53265326
.v.pins = (const struct hda_pintbl[]) {
53275327
{ 0x19, 0x04a110f0 },
@@ -5651,7 +5651,8 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
56515651
SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
56525652
SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
56535653
SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
5654-
SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_BXBT2807_MIC),
5654+
SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
5655+
SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
56555656
SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
56565657
SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
56575658
SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),

0 commit comments

Comments
 (0)