All of lore.kernel.org
 help / color / mirror / Atom feed
* RE: Show currectly selected widget in proc_read for hda driver
@ 2005-03-24  5:29 "Tien,  C.L. - 田承禮"
  2005-03-24 12:04 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: "Tien,  C.L. - 田承禮" @ 2005-03-24  5:29 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 736 bytes --]


Execuse me, this one is a better implement. I don't issue the GET_CONNECT for list length is 1, which is not necessary and can cause problem.

Please ignore previous patch.

Sincerely,
ChenLi Tien

-----Original Message-----
From:	Tien,  C.L. - 田承禮
Sent:	2005/3/24 [星期四] 上午 12:17
To:	alsa-devel@alsa-project.org
Cc:	
Subject:	Show currectly selected widget in proc_read for hda driver

Summary: <Show currectly selected widget in proc_read for hda driver>
Signed-off-by: ChenLi Tien<cltien@cmedia.com.tw>

Durind debugging for cm9880 multi-channel playback, I added the * after the currently selected widget, mixer widget doesn't need this but other 3 widget types  need it.

Sincerely,
ChenLi Tien




[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: hda_proc.c.patch --]
[-- Type: text/x-patch; name="hda_proc.c.patch", Size: 1056 bytes --]

Index: alsa-cvs/alsa-kernel/pci/hda/hda_proc.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/hda/hda_proc.c,v
retrieving revision 1.1
diff -a -u -r1.1 hda_proc.c
--- alsa-cvs/alsa-kernel/pci/hda/hda_proc.c	20 Jan 2005 15:02:28 -0000	1.1
+++ alsa-cvs/alsa-kernel/pci/hda/hda_proc.c	24 Mar 2005 05:20:57 -0000
@@ -266,13 +266,19 @@
 
 		if (wid_caps & AC_WCAP_CONN_LIST) {
 			hda_nid_t conn[HDA_MAX_CONNECTIONS];
-			int c, conn_len;
+			int c, conn_len, curr = -1;
 			conn_len = snd_hda_get_connections(codec, nid, conn,
 							   HDA_MAX_CONNECTIONS);
+			if (conn_len > 1 && wid_type != AC_WID_AUD_MIX)
+				curr = snd_hda_codec_read(codec, nid, 0,
+					AC_VERB_GET_CONNECT_SEL, 0);
 			snd_iprintf(buffer, "  Connection: %d\n", conn_len);
 			snd_iprintf(buffer, "    ");
-			for (c = 0; c < conn_len; c++)
+			for (c = 0; c < conn_len; c++) {
 				snd_iprintf(buffer, " 0x%02x", conn[c]);
+				if (c == curr)
+					snd_iprintf(buffer, "*");
+			}
 			snd_iprintf(buffer, "\n");
 		}
 	}

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-03-24 12:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-24  5:29 Show currectly selected widget in proc_read for hda driver "Tien,  C.L. - 田承禮"
2005-03-24 12:04 ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.