projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.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
|
blame
|
history
diff --git
a/drivers/pinctrl/pinconf.c
b/drivers/pinctrl/pinconf.c
index 0c9d08d8469471a909665abe3a300282c574f771..3f018a1cc14bb2b1bfb1ad1d62c836da42864eeb 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++;
}