diff options
author | Simon Glass | 2011-12-10 08:44:01 +0000 |
---|---|---|
committer | Wolfgang Denk | 2012-03-06 21:09:46 +0100 |
commit | 4c12eeb8b55483e48ef98b8a480e2bbacc9f210d (patch) | |
tree | 7624947e7cd097d48ea3a2e1a3ccfa82ee766fc4 /common/cmd_time.c | |
parent | 9d12d5d41d5653ba2f943886f45b8c2eb0f63450 (diff) |
Convert cmd_usage() calls in common to use a return value
Change all files in common/ to use CMD_RET_USAGE instead of calling
cmd_usage() directly. I'm not completely sure about this patch since
the code since impact is small (100 byte or so on ARM) and it might
need splitting into smaller patches. But for now here it is.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/cmd_time.c')
-rw-r--r-- | common/cmd_time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_time.c b/common/cmd_time.c index c937ae4af38..6dbdbbfbe7a 100644 --- a/common/cmd_time.c +++ b/common/cmd_time.c @@ -38,7 +38,7 @@ static int run_command_and_time_it(int flag, int argc, char * const argv[], return 1; } if (argc > cmdtp->maxargs) - return cmd_usage(cmdtp); + return CMD_RET_USAGE; /* * TODO(clchiou): get_timer_masked() is only defined in certain ARM @@ -77,7 +77,7 @@ static int do_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) int retval = 0; if (argc == 1) - return cmd_usage(cmdtp); + return CMD_RET_USAGE; retval = run_command_and_time_it(0, argc - 1, argv + 1, &cycles); report_time(cycles); |