]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: hda/realtek - Reduce click noise on Dell Precision 5820 headphone
authorTakashi Iwai <tiwai@suse.de>
Wed, 20 Feb 2019 15:15:45 +0000 (16:15 +0100)
committerTakashi Iwai <tiwai@suse.de>
Wed, 20 Feb 2019 15:45:22 +0000 (16:45 +0100)
commitacfda4338d8326a85bc5e8c017e7b9704e29ac00
tree7726cdb58eaa2a50899ef96ef0ddfbac24e9ca64
parent53d2bb965e6c96befae00d8c881cd52501444a89
ALSA: hda/realtek - Reduce click noise on Dell Precision 5820 headphone

Dell Precision 5820 with ALC3234 codec (which is equivalent with
ALC255) shows click noises at (runtime) PM resume on the headphone.
The biggest source of the noise comes from the cleared headphone pin
control at resume, which is done via the standard shutup procedure.

Although we have an override of the standard shutup callback to
replace with NOP, this would skip other needed stuff (e.g. the pull
down of headset power).  So, instead, this "fixes" the behavior of
alc_fixup_no_shutup() by introducing spec->no_shutup_pins flag.
When this flag is set, Realtek codec won't call the standard
snd_hda_shutup_pins() & co.  Now alc_fixup_no_shutup() just sets this
flag instead of overriding spec->shutup callback itself.  This allows
us to apply the similar fix for other entries easily if needed in
future.

Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_realtek.c