]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
clk: actions: owl-factor: convert from round_rate() to determine_rate()
authorBrian Masney <bmasney@redhat.com>
Mon, 11 Aug 2025 15:19:05 +0000 (11:19 -0400)
committerBrian Masney <bmasney@redhat.com>
Mon, 8 Sep 2025 13:41:29 +0000 (09:41 -0400)
The round_rate() clk ops is deprecated, so migrate this driver from
round_rate() to determine_rate() using the Coccinelle semantic patch
on the cover letter of this series.

Signed-off-by: Brian Masney <bmasney@redhat.com>
drivers/clk/actions/owl-factor.c

index 64f316cf7cfcc3d05d59522b347cf4e17f80e9e2..12f41f6bacd66d9b31323b1fe41236fb4655b24f 100644 (file)
@@ -130,14 +130,16 @@ long owl_factor_helper_round_rate(struct owl_clk_common *common,
        return *parent_rate * mul / div;
 }
 
-static long owl_factor_round_rate(struct clk_hw *hw, unsigned long rate,
-                       unsigned long *parent_rate)
+static int owl_factor_determine_rate(struct clk_hw *hw,
+                                    struct clk_rate_request *req)
 {
        struct owl_factor *factor = hw_to_owl_factor(hw);
        struct owl_factor_hw *factor_hw = &factor->factor_hw;
 
-       return owl_factor_helper_round_rate(&factor->common, factor_hw,
-                                       rate, parent_rate);
+       req->rate = owl_factor_helper_round_rate(&factor->common, factor_hw,
+                                                req->rate, &req->best_parent_rate);
+
+       return 0;
 }
 
 unsigned long owl_factor_helper_recalc_rate(struct owl_clk_common *common,
@@ -214,7 +216,7 @@ static int owl_factor_set_rate(struct clk_hw *hw, unsigned long rate,
 }
 
 const struct clk_ops owl_factor_ops = {
-       .round_rate     = owl_factor_round_rate,
+       .determine_rate = owl_factor_determine_rate,
        .recalc_rate    = owl_factor_recalc_rate,
        .set_rate       = owl_factor_set_rate,
 };