Skip to content

Commit

Permalink
pinctrl: fix pinconf_groups_show() to emit newline
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Stephen Warren authored and Linus Walleij committed Feb 22, 2012
1 parent 3cc70ed commit f7b9006
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/pinctrl/pinconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
}

Expand Down

0 comments on commit f7b9006

Please sign in to comment.