summaryrefslogtreecommitdiffstats
path: root/commands/of_display_timings.c
diff options
context:
space:
mode:
authorMichael Tretter <m.tretter@pengutronix.de>2019-04-04 16:53:14 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-04-05 14:45:16 +0200
commit747be0f2bbedcc3bc397ab8be289885ee24e0dbf (patch)
treeb1e32e82668e90ed5a100e91ba385a566957c26a /commands/of_display_timings.c
parented9006f488dfb2419175a270271440f39093983c (diff)
downloadbarebox-747be0f2bbedcc3bc397ab8be289885ee24e0dbf.tar.gz
barebox-747be0f2bbedcc3bc397ab8be289885ee24e0dbf.tar.xz
commands: unify newlines for options
The BAREBOX_CMD_HELP_OPT macro adds a newline to the string, but users of the macro inconsistently add another newline resulting in empty newlines for some commands, but not for others. Remove any newline in the description and rely on BAREBOX_CMD_HELP_OPT for the formatting. Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/of_display_timings.c')
-rw-r--r--commands/of_display_timings.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/of_display_timings.c b/commands/of_display_timings.c
index ccf2db0da5..365ff80c36 100644
--- a/commands/of_display_timings.c
+++ b/commands/of_display_timings.c
@@ -148,10 +148,10 @@ static int do_of_display_timings(int argc, char *argv[])
BAREBOX_CMD_HELP_START(of_display_timings)
BAREBOX_CMD_HELP_TEXT("Options:")
-BAREBOX_CMD_HELP_OPT("-l", "list path of all available display-timings\n")
-BAREBOX_CMD_HELP_OPT("-s", "list path of all selected display-timings\n")
-BAREBOX_CMD_HELP_OPT("-S path", "select display-timings and register oftree fixup\n")
-BAREBOX_CMD_HELP_OPT("-f dtb", "work on dtb. Has no effect on -s option\n")
+BAREBOX_CMD_HELP_OPT("-l", "list path of all available display-timings")
+BAREBOX_CMD_HELP_OPT("-s", "list path of all selected display-timings")
+BAREBOX_CMD_HELP_OPT("-S path", "select display-timings and register oftree fixup")
+BAREBOX_CMD_HELP_OPT("-f dtb", "work on dtb. Has no effect on -s option")
BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(of_display_timings)