summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Orlov <denorl2009@gmail.com>2024-03-20 19:43:36 +0300
committerSascha Hauer <s.hauer@pengutronix.de>2024-03-25 11:00:21 +0100
commit34f75394b342357617fbb2e4cdd4a732ed7da31c (patch)
treef484228f42ad6284cde25f6f85c7859187b8dbfe
parent9caee28f71300eb64ee256b9fef2247ca06be5cf (diff)
downloadbarebox-34f75394b342357617fbb2e4cdd4a732ed7da31c.tar.gz
barebox-34f75394b342357617fbb2e4cdd4a732ed7da31c.tar.xz
clk: fix clk_set_rate command help text
It was at odds with the list of options, with the former mentioning RATE and the latter mentioning HZ as a parameter. It seems that every other clk-related command uses HZ, so use it here too. Signed-off-by: Denis Orlov <denorl2009@gmail.com> Link: https://lore.barebox.org/20240320164404.15347-1-denorl2009@gmail.com Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/clk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/clk.c b/commands/clk.c
index b1741b9da4..606519091e 100644
--- a/commands/clk.c
+++ b/commands/clk.c
@@ -67,7 +67,7 @@ static int do_clk_set_rate(int argc, char *argv[])
}
BAREBOX_CMD_HELP_START(clk_set_rate)
-BAREBOX_CMD_HELP_TEXT("Set clock CLK to RATE")
+BAREBOX_CMD_HELP_TEXT("Set clock CLK rate to HZ")
BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(clk_set_rate)