diff options
author | Hui Wang <hui.wang@canonical.com> | 2015-03-26 17:14:55 +0800 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-04-22 08:58:28 +0200 |
commit | 351bd2c8818daee7934eadafe91a164870979093 (patch) | |
tree | d840c86bfe056afc028319516f967b4b743c529e /sound | |
parent | dc8adb882d40ca75c28e0e4b3ec7e9fd3386acd9 (diff) |
ALSA: hda - Add one more node in the EAPD supporting candidate list
commit af95b41426e0b58279f8ff0ebe420df49a4e96b8 upstream.
We have a HP machine which use the codec node 0x17 connecting the
internal speaker, and from the node capability, we saw the EAPD,
if we don't set the EAPD on for this node, the internal speaker
can't output any sound.
BugLink: https://bugs.launchpad.net/bugs/1436745
Signed-off-by: Hui Wang <hui.wang@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 09193457d0b0..754882b588d4 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -270,7 +270,7 @@ static void alc_auto_setup_eapd(struct hda_codec *codec, bool on) { /* We currently only handle front, HP */ static hda_nid_t pins[] = { - 0x0f, 0x10, 0x14, 0x15, 0 + 0x0f, 0x10, 0x14, 0x15, 0x17, 0 }; hda_nid_t *p; for (p = pins; *p; p++) |