diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2009-01-27 18:03:10 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-01-28 08:43:45 +0100 |
commit | 62c3ae7c6ef215b1afa614abdf61acf077752207 (patch) | |
tree | dac70a1eebda8bb6c05b95db3a7bebffeff94b3b /common/cmd_bootm.c | |
parent | 84cde2bb409c07c6ef36a192d194359d4e9ccd70 (diff) | |
download | u-boot-imx-62c3ae7c6ef215b1afa614abdf61acf077752207.zip u-boot-imx-62c3ae7c6ef215b1afa614abdf61acf077752207.tar.gz u-boot-imx-62c3ae7c6ef215b1afa614abdf61acf077752207.tar.bz2 |
Standardize command usage messages with cmd_usage()
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'common/cmd_bootm.c')
-rw-r--r-- | common/cmd_bootm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 9055672..68f1675 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -454,13 +454,13 @@ int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) } /* Unrecognized command */ else { - printf ("Usage:\n%s\n", cmdtp->usage); + cmd_usage(cmdtp); return 1; } if (images.state >= state) { printf ("Trying to execute a command out of order\n"); - printf ("Usage:\n%s\n", cmdtp->usage); + cmd_usage(cmdtp); return 1; } |