projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3cc70ed
)
pinctrl: fix pinconf_groups_show() to emit newline
author
Stephen Warren
<swarren@nvidia.com>
Mon, 20 Feb 2012 06:45:58 +0000
(23:45 -0700)
committer
Linus Walleij
<linus.walleij@linaro.org>
Wed, 22 Feb 2012 17:42:00 +0000
(18:42 +0100)
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>
drivers/pinctrl/pinconf.c
patch
|
blob
|
history
diff --git
a/drivers/pinctrl/pinconf.c
b/drivers/pinctrl/pinconf.c
index
0c9d08d
..
3f018a1
100644
(file)
--- a/
drivers/pinctrl/pinconf.c
+++ b/
drivers/pinctrl/pinconf.c
@@
-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++;
}