From: Lothar Waßmann Date: Wed, 29 Jun 2016 08:46:49 +0000 (+0200) Subject: common/cmd_misc.c: fix return code of sleep command X-Git-Tag: KARO-TX-2016-07-05~8 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=a3b5e1ec3e52bd7624e832a612a23fc2dd432abb;ds=sidebyside common/cmd_misc.c: fix return code of sleep command -1 is equivalent to CMD_RET_USAGE and makes the sleep command print its usage information when aborted by which is most probably not intended. --- diff --git a/common/cmd_misc.c b/common/cmd_misc.c index 93f9eabd6b..41bb860a0f 100644 --- a/common/cmd_misc.c +++ b/common/cmd_misc.c @@ -23,12 +23,12 @@ static int do_sleep(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) while (get_timer(start) < delay) { if (ctrlc()) - return (-1); + return CMD_RET_FAILURE; udelay(100); } - return 0; + return CMD_RET_SUCCESS; } U_BOOT_CMD(