diff options
| author | Stephen Warren <swarren@nvidia.com> | 2012-02-19 23:45:58 -0700 | 
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2012-02-22 18:42:00 +0100 | 
| commit | f7b9006f4598dd252dca5225f3cf88179c36276f (patch) | |
| tree | 351e1b5aefddcf5d885069c37f844f916cae9b8f | |
| parent | 3cc70ed32cd6c5cb57de17bde615148ed7eda88f (diff) | |
| download | linux-f7b9006f4598dd252dca5225f3cf88179c36276f.tar.bz2 | |
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>
| -rw-r--r-- | drivers/pinctrl/pinconf.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pinctrl/pinconf.c b/drivers/pinctrl/pinconf.c index 0c9d08d84694..3f018a1cc14b 100644 --- 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++;  	}  |