From: Patrick Delaunay Date: Mon, 31 Jan 2022 16:21:40 +0000 (+0100) Subject: cmd: clk: fix long help message X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=92a1bba85761e4dd5c0647c48048423bceef4749;p=u-boot.git cmd: clk: fix long help message Fix the long help message for "clk setfreq" command Fixes: 7ab418fbe612 ("clk: add support for setting clk rate from cmdline") Signed-off-by: Patrick Delaunay Reviewed-by: Sean Anderson Link: https://lore.kernel.org/r/20220131172131.4.Ic863c28ffdcc15b3f4616434c2efd88b4e45495c@changeid --- diff --git a/cmd/clk.c b/cmd/clk.c index 73dea5e746..a483fd8981 100644 --- a/cmd/clk.c +++ b/cmd/clk.c @@ -160,7 +160,7 @@ static int do_clk(struct cmd_tbl *cmdtp, int flag, int argc, #ifdef CONFIG_SYS_LONGHELP static char clk_help_text[] = "dump - Print clock frequencies\n" - "setfreq [clk] [freq] - Set clock frequency"; + "clk setfreq [clk] [freq] - Set clock frequency"; #endif U_BOOT_CMD(clk, 4, 1, do_clk, "CLK sub-system", clk_help_text);