diff options
author | Kailang Yang <kailang@realtek.com> | 2025-02-12 14:40:46 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-03-13 12:47:28 +0100 |
commit | a2bf0e275b68b6edf056866378c14d0c0b509f73 (patch) | |
tree | 6e4e902884849178051b88fa5e15542ca596d0aa /sound | |
parent | 138cbc307ff70fdf85a4374d2ccfb8bcb600c4f1 (diff) | |
download | linux-a2bf0e275b68b6edf056866378c14d0c0b509f73.tar.gz linux-a2bf0e275b68b6edf056866378c14d0c0b509f73.tar.bz2 linux-a2bf0e275b68b6edf056866378c14d0c0b509f73.zip |
ALSA: hda/realtek: Fixup ALC225 depop procedure
[ Upstream commit 174448badb4409491bfba2e6b46f7aa078741c5e ]
Headset MIC will no function when power_save=0.
Fixes: 1fd50509fe14 ("ALSA: hda/realtek: Update ALC225 depop procedure")
Link: https://bugzilla.kernel.org/show_bug.cgi?id=219743
Signed-off-by: Kailang Yang <kailang@realtek.com>
Link: https://lore.kernel.org/0474a095ab0044d0939ec4bf4362423d@realtek.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 2df73f59aea9..18730b0934fe 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -3713,6 +3713,7 @@ static void alc225_init(struct hda_codec *codec) AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); msleep(75); + alc_update_coef_idx(codec, 0x4a, 3 << 10, 0); alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */ } } |