cmd: cyclic: Remove duplicate command name in help text
authorAlexander Dahl <ada@thorsis.com>
Fri, 4 Aug 2023 15:53:23 +0000 (17:53 +0200)
committerStefan Roese <sr@denx.de>
Thu, 10 Aug 2023 06:39:11 +0000 (08:39 +0200)
Function 'cmd_usage()' already prints one command in usage before
printing out the help text given to the U_BOOT_CMD_WITH_SUBCMDS macro.

Wrong previous output:

    Usage:
    cyclic cyclic demo <cycletime_ms> <delay_us> - register cyclic demo function
    cyclic list - list cyclic functions

Signed-off-by: Alexander Dahl <ada@thorsis.com>
Reviewed-by: Stefan Roese <sr@denx.de>
cmd/cyclic.c

index 97324d8..946f1d7 100644 (file)
@@ -77,7 +77,7 @@ static int do_cyclic_list(struct cmd_tbl *cmdtp, int flag, int argc,
 }
 
 static char cyclic_help_text[] =
-       "cyclic demo <cycletime_ms> <delay_us> - register cyclic demo function\n"
+       "demo <cycletime_ms> <delay_us> - register cyclic demo function\n"
        "cyclic list - list cyclic functions\n";
 
 U_BOOT_CMD_WITH_SUBCMDS(cyclic, "Cyclic", cyclic_help_text,