aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/pci/rme9652/hdspm.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c
index 73d96269c9b2..f6e922cf3fd3 100644
--- a/sound/pci/rme9652/hdspm.c
+++ b/sound/pci/rme9652/hdspm.c
@@ -5125,11 +5125,18 @@ snd_hdspm_proc_read_aes32(struct snd_info_entry * entry,
5125 autosync_ref = "AES7"; break; 5125 autosync_ref = "AES7"; break;
5126 case HDSPM_AES32_AUTOSYNC_FROM_AES8: 5126 case HDSPM_AES32_AUTOSYNC_FROM_AES8:
5127 autosync_ref = "AES8"; break; 5127 autosync_ref = "AES8"; break;
5128 case HDSPM_AES32_AUTOSYNC_FROM_TCO:
5129 autosync_ref = "TCO"; break;
5130 case HDSPM_AES32_AUTOSYNC_FROM_SYNC_IN:
5131 autosync_ref = "Sync In"; break;
5128 default: 5132 default:
5129 autosync_ref = "---"; break; 5133 autosync_ref = "---"; break;
5130 } 5134 }
5131 snd_iprintf(buffer, "AutoSync ref = %s\n", autosync_ref); 5135 snd_iprintf(buffer, "AutoSync ref = %s\n", autosync_ref);
5132 5136
5137 /* call readout function for TCO specific status */
5138 snd_hdspm_proc_read_tco(entry, buffer);
5139
5133 snd_iprintf(buffer, "\n"); 5140 snd_iprintf(buffer, "\n");
5134} 5141}
5135 5142