]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd/Kconfig: CONFIG_CMD_CLK should depend on CONFIG_CLK
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 9 Sep 2024 23:45:28 +0000 (01:45 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 10 Oct 2024 04:04:56 +0000 (22:04 -0600)
The clk command cannot provide useful output without a clock driver.
So let it depend on CONFIG_CLK.

Since commit 258c1002383e ("cmd: clk: Use dump function from clk_ops")
the remark about deprecation is obsolete. Remove it.

Since commit 7ab418fbe612 ("clk: add support for setting clk rate from
cmdline") the clk command can be used to set clock frequencies. Mention
it.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
cmd/Kconfig

index d667ed5120624a1d98b2a370efca9e38f27e7df6..37894eb80d66f98bb5a3b3745d207ddbf7af088d 100644 (file)
@@ -1079,13 +1079,10 @@ config CMD_BIND
          gadget driver from the command line.
 
 config CMD_CLK
-       bool "clk - Show clock frequencies"
+       bool "clk - Show and set clock frequencies"
+       depends on CLK
        help
-         (deprecated)
-         Shows clock frequences by calling a sock_clk_dump() hook function.
-         This is depreated in favour of using the CLK uclass and accessing
-         clock values from associated drivers. However currently no command
-         exists for this.
+         Show and set clock frequencies managed by CLK uclass drivers.
 
 config CMD_DEMO
        bool "demo - Demonstration commands for driver model"