summaryrefslogtreecommitdiff
path: root/include/clk.h
diff options
context:
space:
mode:
authorMichal Suchanek <msuchanek@suse.de>2022-09-28 13:37:57 +0300
committerSean Anderson <seanga2@gmail.com>2022-10-19 19:06:41 +0300
commita1265cd5804474f1c39731c73c65160a1eaf88f4 (patch)
tree338caddfcc8331933608701f9674f32a09fa85d0 /include/clk.h
parentd3ccdc0fce206c1d54fbdc607333de6184e19e75 (diff)
downloadu-boot-a1265cd5804474f1c39731c73c65160a1eaf88f4.tar.xz
clk: change return type of clk_get_parent_rate from long long to ulong
All functions getting and setting clock rate use ulong for rate, only clk_get_parent_rate is an exception. Change the return value to match other clock rate funcrions. Most users directly assign the rate to unsigned long anyway, and the few users that use u64 (not s64) multiply the rate so they may need the extra bits for the result in their use case. Fixes: 4aa78300a0 ("dm: clk: Define clk_get_parent_rate() for clk operations") Signed-off-by: Michal Suchanek <msuchanek@suse.de> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Sean Anderson <seanga2@gmail.com> Link: https://lore.kernel.org/r/20220928103757.11870-1-msuchanek@suse.de
Diffstat (limited to 'include/clk.h')
-rw-r--r--include/clk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clk.h b/include/clk.h
index 76bb64bb5e..41a8fb3419 100644
--- a/include/clk.h
+++ b/include/clk.h
@@ -444,7 +444,7 @@ struct clk *clk_get_parent(struct clk *clk);
*
* Return: clock rate in Hz, or -ve error code.
*/
-long long clk_get_parent_rate(struct clk *clk);
+ulong clk_get_parent_rate(struct clk *clk);
/**
* clk_round_rate() - Adjust a rate to the exact rate a clock can provide
@@ -577,7 +577,7 @@ static inline struct clk *clk_get_parent(struct clk *clk)
return ERR_PTR(-ENOSYS);
}
-static inline long long clk_get_parent_rate(struct clk *clk)
+static inline ulong clk_get_parent_rate(struct clk *clk)
{
return -ENOSYS;
}