diff options
author | Kailang Yang <kailang@realtek.com> | 2024-10-25 10:37:57 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-11-12 15:39:44 +0100 |
commit | 42ee87df8530150d637aa48363b72b22a9bbd78f (patch) | |
tree | 6d1c5d9bd2297b2c1ded8ea7fbbbb564adadfb76 | |
parent | ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry (diff) | |
download | linux-42ee87df8530150d637aa48363b72b22a9bbd78f.tar.xz linux-42ee87df8530150d637aa48363b72b22a9bbd78f.zip |
ALSA: hda/realtek - Fixed Clevo platform headset Mic issue
Clevo platform with ALC255 Headset Mic was disable by default.
Assigned verb table for Mic pin will enable it.
Signed-off-by: Kailang Yang <kailang@realtek.com>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/b2dcac3e09ef4f82b36d6712194e1ea4@realtek.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 571fa8a6c9e1..3a0bb152c9eb 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -11673,6 +11673,8 @@ static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = { {0x1a, 0x40000000}), SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC, {0x19, 0x40000000}), + SND_HDA_PIN_QUIRK(0x10ec0255, 0x1558, "Clevo", ALC2XX_FIXUP_HEADSET_MIC, + {0x19, 0x40000000}), {} }; |