aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-dapm.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-03-03 13:01:01 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-03-05 09:50:18 -0500
commitf13ebada17142438ab97afa0421aa5084ce174f2 (patch)
tree6bf147722ac3c963360e31b07f282166e4609ca1 /sound/soc/soc-dapm.c
parentad20ff920c1fd217578e2c637dd50c1878a21c06 (diff)
ASoC: dapm: Show if widgets are forced in debugfs
The information was not otherwise visible. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@ti.com>
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r--sound/soc/soc-dapm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index c9b088dab1cf..a4d4aa1e6c49 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -1569,8 +1569,9 @@ static ssize_t dapm_widget_power_read_file(struct file *file,
1569 out = is_connected_output_ep(w); 1569 out = is_connected_output_ep(w);
1570 dapm_clear_walk(w->dapm); 1570 dapm_clear_walk(w->dapm);
1571 1571
1572 ret = snprintf(buf, PAGE_SIZE, "%s: %s in %d out %d", 1572 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1573 w->name, w->power ? "On" : "Off", in, out); 1573 w->name, w->power ? "On" : "Off",
1574 w->force ? " (forced)" : "", in, out);
1574 1575
1575 if (w->reg >= 0) 1576 if (w->reg >= 0)
1576 ret += snprintf(buf + ret, PAGE_SIZE - ret, 1577 ret += snprintf(buf + ret, PAGE_SIZE - ret,