diff options
author | Frank Oltmanns <[email protected]> | 2023-08-07 14:43:34 +0200 |
---|---|---|
committer | Chen-Yu Tsai <[email protected]> | 2023-08-09 23:33:58 +0800 |
commit | 80c439cd1f011e8c6bb4c6c65987e235f686d9ee (patch) | |
tree | 8099e6f17d4444a851787de9331d06f7e2353e18 | |
parent | 075d9ca5b4e17f84fd1c744a405e69ec743be7f0 (diff) |
clk: sunxi-ng: nkm: Use correct parameter name for parent HW
ccu_nkm_round_rate() takes a clk_hw as parameter "hw". Since "hw" is the
nkm clock's parent clk_hw, not the clk_hw of the nkm clock itself,
change the parameter name to "parent_hw" to make it more clear what
we're dealing with.
Acked-by: Maxime Ripard <[email protected]>
Reviewed-by: Jernej Skrabec <[email protected]>
Signed-off-by: Frank Oltmanns <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Chen-Yu Tsai <[email protected]>
-rw-r--r-- | drivers/clk/sunxi-ng/ccu_nkm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sunxi-ng/ccu_nkm.c b/drivers/clk/sunxi-ng/ccu_nkm.c index a0978a50edae..f267142e58b3 100644 --- a/drivers/clk/sunxi-ng/ccu_nkm.c +++ b/drivers/clk/sunxi-ng/ccu_nkm.c @@ -106,7 +106,7 @@ static unsigned long ccu_nkm_recalc_rate(struct clk_hw *hw, } static unsigned long ccu_nkm_round_rate(struct ccu_mux_internal *mux, - struct clk_hw *hw, + struct clk_hw *parent_hw, unsigned long *parent_rate, unsigned long rate, void *data) |