Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f13ebada authored by Mark Brown's avatar Mark Brown
Browse files

ASoC: dapm: Show if widgets are forced in debugfs



The information was not otherwise visible.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
parent ad20ff92
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -1569,8 +1569,9 @@ static ssize_t dapm_widget_power_read_file(struct file *file,
	out = is_connected_output_ep(w);
	out = is_connected_output_ep(w);
	dapm_clear_walk(w->dapm);
	dapm_clear_walk(w->dapm);


	ret = snprintf(buf, PAGE_SIZE, "%s: %s  in %d out %d",
	ret = snprintf(buf, PAGE_SIZE, "%s: %s%s  in %d out %d",
		       w->name, w->power ? "On" : "Off", in, out);
		       w->name, w->power ? "On" : "Off",
		       w->force ? " (forced)" : "", in, out);


	if (w->reg >= 0)
	if (w->reg >= 0)
		ret += snprintf(buf + ret, PAGE_SIZE - ret,
		ret += snprintf(buf + ret, PAGE_SIZE - ret,