9
0
Fork 0

arm lib: Remove redundant boot usage info from boot[uz].c

There is no need to add the command name to the "usage" info when
defining a command.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Robert P. J. Day 2012-11-18 08:39:51 -05:00 committed by Sascha Hauer
parent 1b6041a662
commit a0a6262c91
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ static const __maybe_unused char cmd_bootu_help[] =
BAREBOX_CMD_START(bootu)
.cmd = do_bootu,
.usage = "bootu - start a raw linux image",
.usage = "start a raw linux image",
BAREBOX_CMD_HELP(cmd_bootu_help)
BAREBOX_CMD_END

View File

@ -133,7 +133,7 @@ static const __maybe_unused char cmd_bootz_help[] =
BAREBOX_CMD_START(bootz)
.cmd = do_bootz,
.usage = "bootz - start a zImage",
.usage = "start a zImage",
BAREBOX_CMD_HELP(cmd_bootz_help)
BAREBOX_CMD_END