diff options
author | Kailang Yang <kailang@realtek.com> | 2020-01-07 12:22:19 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-01-14 22:06:59 +0300 |
commit | ce515433ff03a172f286d059536a3692bc07e65d (patch) | |
tree | 7a51370fbbf4eb8318e5ddac3d46602a36e29f48 /sound | |
parent | 6aeb9cdd4860d9417f322bf974aaab331cd4dcc6 (diff) | |
download | linux-ce515433ff03a172f286d059536a3692bc07e65d.tar.xz |
ALSA: hda/realtek - Set EAPD control to default for ALC222
commit 9194a1ebbc56d7006835e2b4cacad301201fb832 upstream.
Set EAPD control to verb control.
Signed-off-by: Kailang Yang <kailang@realtek.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.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 eb50560d6c12..6bb813d43829 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -424,6 +424,7 @@ static void alc_fill_eapd_coef(struct hda_codec *codec) case 0x10ec0672: alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */ break; + case 0x10ec0222: case 0x10ec0623: alc_update_coef_idx(codec, 0x19, 1<<13, 0); break; |