aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/hda')
-rw-r--r--sound/pci/hda/hda_proc.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_proc.c b/sound/pci/hda/hda_proc.c
index 0fee8fae590a..9760f001916d 100644
--- a/sound/pci/hda/hda_proc.c
+++ b/sound/pci/hda/hda_proc.c
@@ -504,6 +504,8 @@ static void print_conn_list(struct snd_info_buffer *buffer,
504 int conn_len) 504 int conn_len)
505{ 505{
506 int c, curr = -1; 506 int c, curr = -1;
507 const hda_nid_t *list;
508 int cache_len;
507 509
508 if (conn_len > 1 && 510 if (conn_len > 1 &&
509 wid_type != AC_WID_AUD_MIX && 511 wid_type != AC_WID_AUD_MIX &&
@@ -521,6 +523,19 @@ static void print_conn_list(struct snd_info_buffer *buffer,
521 } 523 }
522 snd_iprintf(buffer, "\n"); 524 snd_iprintf(buffer, "\n");
523 } 525 }
526
527 /* Get Cache connections info */
528 cache_len = snd_hda_get_conn_list(codec, nid, &list);
529 if (cache_len != conn_len
530 || memcmp(list, conn, conn_len)) {
531 snd_iprintf(buffer, " In-driver Connection: %d\n", cache_len);
532 if (cache_len > 0) {
533 snd_iprintf(buffer, " ");
534 for (c = 0; c < cache_len; c++)
535 snd_iprintf(buffer, " 0x%02x", list[c]);
536 snd_iprintf(buffer, "\n");
537 }
538 }
524} 539}
525 540
526static void print_gpio(struct snd_info_buffer *buffer, 541static void print_gpio(struct snd_info_buffer *buffer,