dect
/
linux-2.6
Archived
13
0
Fork 0

pinctrl: fix pinconf_groups_show() to emit newline

pinconf_groups_show() wrote all debug information on one line. Fix it to
match pinconf_pins_show() and be legible.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Stephen Warren 2012-02-19 23:45:58 -07:00 committed by Linus Walleij
parent 3cc70ed32c
commit f7b9006f45
1 changed files with 2 additions and 0 deletions

View File

@ -285,6 +285,8 @@ static int pinconf_groups_show(struct seq_file *s, void *what)
seq_printf(s, "%u (%s):", selector, gname);
pinconf_dump_group(pctldev, s, selector, gname);
seq_printf(s, "\n");
selector++;
}