diff options
| author | Alexander Dahl <[email protected]> | 2024-05-03 09:20:09 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-01 15:33:19 -0600 |
| commit | 133f67a3610b5252e85828d86c5e9311f24b7faa (patch) | |
| tree | 09a7e52f3f1bd4495cc4f1655c5671329abc00f5 /include | |
| parent | 068c346703953d10e803fdd8df7038a3a140c42c (diff) | |
clk: Revise help text for clk_get_parent_rate()
The function returns the rate of the parent clock, the previous text
made no sense at all.
Fixes: 4aa78300a025 ("dm: clk: Define clk_get_parent_rate() for clk operations")
Signed-off-by: Alexander Dahl <[email protected]>
Reviewed-by: Sean Anderson <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clk.h b/include/clk.h index af23e4f3475..045e923a529 100644 --- a/include/clk.h +++ b/include/clk.h @@ -444,7 +444,7 @@ ulong clk_get_rate(struct clk *clk); struct clk *clk_get_parent(struct clk *clk); /** - * clk_get_parent_rate() - Get parent of current clock rate. + * clk_get_parent_rate() - Get rate of current clock's parent. * @clk: A clock struct that was previously successfully requested by * clk_request/get_by_*(). * |
