]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
ASoC: Display the power register in DAPM widget debugfs
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 4 Dec 2009 15:25:56 +0000 (15:25 +0000)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 4 Dec 2009 16:07:26 +0000 (16:07 +0000)
Make it a bit easier to tie DAPM widgets in with the register map
without referring to the source by including the register location
controlled by the widget.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
sound/soc/soc-dapm.c

index 0d294ef7259006e0681a9b1bb2092c608fde1925..846678aa3d355fc7c4736d485ee19723c69da988 100644 (file)
@@ -1147,9 +1147,16 @@ static ssize_t dapm_widget_power_read_file(struct file *file,
        out = is_connected_output_ep(w);
        dapm_clear_walk(w->codec);
 
-       ret = snprintf(buf, PAGE_SIZE, "%s: %s  in %d out %d\n",
+       ret = snprintf(buf, PAGE_SIZE, "%s: %s  in %d out %d",
                       w->name, w->power ? "On" : "Off", in, out);
 
+       if (w->reg >= 0)
+               ret += snprintf(buf + ret, PAGE_SIZE - ret,
+                               " - R%d(0x%x) bit %d",
+                               w->reg, w->reg, w->shift);
+
+       ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
+
        if (w->sname)
                ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
                                w->sname,