summary refs log tree commit diff
path: root/sound
diff options
context:
space:
mode:
authorKailang Yang <kailang@realtek.com>2019-04-26 16:13:54 +0800
committerTakashi Iwai <tiwai@suse.de>2019-04-28 08:20:14 +0200
commit0700d3d117a7f110ddddbd83873e13652f69c54b (patch)
treeb5f0726677c0021b9385e82a88f5ffd3760e97fd /sound
parent0a29c57b76624723b6b00c027e0e992d130ace49 (diff)
downloadlinux-0700d3d117a7f110ddddbd83873e13652f69c54b.tar.gz
ALSA: hda/realtek - Fixed Dell AIO speaker noise
Fixed Dell AIO speaker noise.
spec->gen.auto_mute_via_amp = 1, this option was solved speaker white
noise at boot.
codec->power_save_node = 0, this option was solved speaker noise at
resume back.

Fixes: 9226665159f0 ("ALSA: hda/realtek - Fix Dell AIO LineOut issue")
Signed-off-by: Kailang Yang <kailang@realtek.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_realtek.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 070749b50eff..7da7fa4f4201 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -5450,6 +5450,8 @@ static void alc274_fixup_bind_dacs(struct hda_codec *codec,
 		return;
 
 	spec->gen.preferred_dacs = preferred_pairs;
+	spec->gen.auto_mute_via_amp = 1;
+	codec->power_save_node = 0;
 }
 
 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */