summaryrefslogtreecommitdiffstats
path: root/common/cmd_boot.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/cmd_boot.c')
-rw-r--r--common/cmd_boot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_boot.c b/common/cmd_boot.c
index 43fc18259b..af549c9f5c 100644
--- a/common/cmd_boot.c
+++ b/common/cmd_boot.c
@@ -76,7 +76,7 @@ int do_go (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD_START(go)
.maxargs = CONFIG_MAXARGS,
.cmd = do_go,
- .usage = "go - start application at address 'addr'\n",
+ .usage = "start application at address 'addr'",
U_BOOT_CMD_HELP(
"addr [arg ...]\n - start application at address 'addr'\n"
" passing 'arg' as arguments\n")
@@ -87,5 +87,5 @@ extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
U_BOOT_CMD_START(reset)
.maxargs = CONFIG_MAXARGS,
.cmd = do_reset,
- .usage = "reset - Perform RESET of the CPU\n",
+ .usage = "Perform RESET of the CPU",
U_BOOT_CMD_END