From: Jaroslav Kysela <perex@perex.cz>
Date: Wed, 22 Jul 2009 13:31:03 +0000 (+0200)
Subject: ALSA: hda_generic: use AC_WCAP_CONN_LIST check for widget connections
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=254da007f93f79ee773788cbb38f24dfab9590f5;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git

ALSA: hda_generic: use AC_WCAP_CONN_LIST check for widget connections

Previous patch used widget type, but the presence flag of the connection
list is in the widget capabilities.

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---

diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c
index da3e1ed29b3..bccb62a643c 100644
--- a/sound/pci/hda/hda_generic.c
+++ b/sound/pci/hda/hda_generic.c
@@ -123,7 +123,7 @@ static int add_new_node(struct hda_codec *codec, struct hda_gspec *spec, hda_nid
 	node->nid = nid;
 	node->wid_caps = get_wcaps(codec, nid);
 	node->type = (node->wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
-	if (node->type <= AC_WID_BEEP || node->type == AC_WID_VENDOR) {
+	if (node->wid_caps & AC_WCAP_CONN_LIST) {
 		nconns = snd_hda_get_connections(codec, nid, conn_list,
 						 HDA_MAX_CONNECTIONS);
 		if (nconns < 0) {