From: Stephen Warren Date: Mon, 20 Feb 2012 06:45:58 +0000 (-0700) Subject: pinctrl: fix pinconf_groups_show() to emit newline X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f7b9006f4598dd252dca5225f3cf88179c36276f;p=linux.git 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 Signed-off-by: Linus Walleij --- diff --git a/drivers/pinctrl/pinconf.c b/drivers/pinctrl/pinconf.c index 0c9d08d846947..3f018a1cc14bb 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++; }