]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
common/cmd_misc.c: fix return code of sleep command
authorLothar Waßmann <LW@KARO-electronics.de>
Wed, 29 Jun 2016 08:46:49 +0000 (10:46 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Wed, 29 Jun 2016 09:12:36 +0000 (11:12 +0200)
-1 is equivalent to CMD_RET_USAGE and makes the sleep command print
its usage information when aborted by <CTRL-C> which is most probably
not intended.

common/cmd_misc.c

index 93f9eabd6b547e1cfa30bbdfb5c6872aa015c626..41bb860a0f9ab89dad459be808a989dbbbcd96fc 100644 (file)
@@ -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(