summaryrefslogtreecommitdiff
path: root/common/cmd_nand.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-12-10 08:44:01 (GMT)
committerWolfgang Denk <wd@denx.de>2012-03-06 20:09:46 (GMT)
commit4c12eeb8b55483e48ef98b8a480e2bbacc9f210d (patch)
tree7624947e7cd097d48ea3a2e1a3ccfa82ee766fc4 /common/cmd_nand.c
parent9d12d5d41d5653ba2f943886f45b8c2eb0f63450 (diff)
downloadu-boot-4c12eeb8b55483e48ef98b8a480e2bbacc9f210d.tar.xz
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_nand.c')
-rw-r--r--common/cmd_nand.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/cmd_nand.c b/common/cmd_nand.c
index fa96a52..035a6f6 100644
--- a/common/cmd_nand.c
+++ b/common/cmd_nand.c
@@ -358,7 +358,7 @@ int do_nand_env_oob(cmd_tbl_t *cmdtp, int argc, char *const argv[])
return ret;
usage:
- return cmd_usage(cmdtp);
+ return CMD_RET_USAGE;
}
#endif
@@ -720,7 +720,7 @@ int do_nand(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
#endif
usage:
- return cmd_usage(cmdtp);
+ return CMD_RET_USAGE;
}
U_BOOT_CMD(
@@ -909,7 +909,7 @@ int do_nandboot(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
usage:
#endif
show_boot_progress(-53);
- return cmd_usage(cmdtp);
+ return CMD_RET_USAGE;
}
show_boot_progress(53);