aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-dapm.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r--sound/soc/soc-dapm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index 0d8b08ef8731..f79711b9fa5b 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -1131,9 +1131,10 @@ static ssize_t dapm_widget_power_read_file(struct file *file,
1131 ret = snprintf(buf, PAGE_SIZE, "%s: %s in %d out %d\n", 1131 ret = snprintf(buf, PAGE_SIZE, "%s: %s in %d out %d\n",
1132 w->name, w->power ? "On" : "Off", in, out); 1132 w->name, w->power ? "On" : "Off", in, out);
1133 1133
1134 if (w->active && w->sname) 1134 if (w->sname)
1135 ret += snprintf(buf, PAGE_SIZE - ret, " stream %s active\n", 1135 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1136 w->sname); 1136 w->sname,
1137 w->active ? "active" : "inactive");
1137 1138
1138 list_for_each_entry(p, &w->sources, list_sink) { 1139 list_for_each_entry(p, &w->sources, list_sink) {
1139 if (p->connect) 1140 if (p->connect)