From: Eugeniy Paltsev Date: Fri, 20 Mar 2020 16:38:17 +0000 (+0300) Subject: CMD: random: fix return code X-Git-Tag: v2020.07-rc1~6^2~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5f2c4e0129bf644dbde3c75119406eceaded2aa2;p=oweals%2Fu-boot.git CMD: random: fix return code As of today 'random' command return 1 (CMD_RET_FAILURE) in case of successful execution and 0 (CMD_RET_SUCCESS) in case of bad arguments. Fix that. NOTE: we remove printing usage information from command body so it won't print twice. Signed-off-by: Eugeniy Paltsev Reviewed-by: Simon Glass --- diff --git a/cmd/mem.c b/cmd/mem.c index 0bfb6081e7..009b7b58f3 100644 --- a/cmd/mem.c +++ b/cmd/mem.c @@ -1144,10 +1144,8 @@ static int do_random(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) unsigned char *buf8; unsigned int i; - if (argc < 3 || argc > 4) { - printf("usage: %s []\n", argv[0]); - return 0; - } + if (argc < 3 || argc > 4) + return CMD_RET_USAGE; len = simple_strtoul(argv[2], NULL, 16); addr = simple_strtoul(argv[1], NULL, 16); @@ -1174,7 +1172,8 @@ static int do_random(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) unmap_sysmem(start); printf("%lu bytes filled with random data\n", len); - return 1; + + return CMD_RET_SUCCESS; } #endif