Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 182778
b: refs/heads/master
c: d033c36
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown committed Dec 4, 2009
1 parent 6ff326e commit 3805e1d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dd1b3d53c2e5b9cccec9001fc0b63f6b686a4ac9
refs/heads/master: d033c36ae5cec22c893c710cd026fb732c4086b9
9 changes: 8 additions & 1 deletion trunk/sound/soc/soc-dapm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 3805e1d

Please sign in to comment.