aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_proc.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-03-19 17:08:19 +0100
committerTakashi Iwai <tiwai@suse.de>2009-03-19 17:08:19 +0100
commit07a1e81355245ca65ab16c7b4ae2332e52ed7acd (patch)
tree9fbd2cd35645886d88482b0a00470da1fceac2fe /sound/pci/hda/hda_proc.c
parent4a1007934591fd0dcdf13454a6faebfcbe1a4ee6 (diff)
downloadkernel_samsung_smdk4412-07a1e81355245ca65ab16c7b4ae2332e52ed7acd.zip
kernel_samsung_smdk4412-07a1e81355245ca65ab16c7b4ae2332e52ed7acd.tar.gz
kernel_samsung_smdk4412-07a1e81355245ca65ab16c7b4ae2332e52ed7acd.tar.bz2
ALSA: hda - Don't show the current connection for power widgets
The power-widgets have no connection selection, so skip the check in proc output, too. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_proc.c')
-rw-r--r--sound/pci/hda/hda_proc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/pci/hda/hda_proc.c b/sound/pci/hda/hda_proc.c
index 93b25ba..639cf0e 100644
--- a/sound/pci/hda/hda_proc.c
+++ b/sound/pci/hda/hda_proc.c
@@ -399,8 +399,10 @@ static void print_conn_list(struct snd_info_buffer *buffer,
{
int c, curr = -1;
- if (conn_len > 1 && wid_type != AC_WID_AUD_MIX &&
- wid_type != AC_WID_VOL_KNB)
+ if (conn_len > 1 &&
+ wid_type != AC_WID_AUD_MIX &&
+ wid_type != AC_WID_VOL_KNB &&
+ wid_type != AC_WID_POWER)
curr = snd_hda_codec_read(codec, nid, 0,
AC_VERB_GET_CONNECT_SEL, 0);
snd_iprintf(buffer, " Connection: %d\n", conn_len);