]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
clk: axs10x: pll_clock: convert from round_rate() to determine_rate()
authorBrian Masney <bmasney@redhat.com>
Mon, 11 Aug 2025 15:19:09 +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/axs10x/pll_clock.c

index 6c7a2b62b406379279b1aab71ac0759f3c5fc64a..c7ca473ee76c83a52e924651046414f60736d542 100644 (file)
@@ -149,8 +149,8 @@ static unsigned long axs10x_pll_recalc_rate(struct clk_hw *hw,
        return rate;
 }
 
-static long axs10x_pll_round_rate(struct clk_hw *hw, unsigned long rate,
-                                 unsigned long *prate)
+static int axs10x_pll_determine_rate(struct clk_hw *hw,
+                                    struct clk_rate_request *req)
 {
        int i;
        long best_rate;
@@ -163,11 +163,13 @@ static long axs10x_pll_round_rate(struct clk_hw *hw, unsigned long rate,
        best_rate = pll_cfg[0].rate;
 
        for (i = 1; pll_cfg[i].rate != 0; i++) {
-               if (abs(rate - pll_cfg[i].rate) < abs(rate - best_rate))
+               if (abs(req->rate - pll_cfg[i].rate) < abs(req->rate - best_rate))
                        best_rate = pll_cfg[i].rate;
        }
 
-       return best_rate;
+       req->rate = best_rate;
+
+       return 0;
 }
 
 static int axs10x_pll_set_rate(struct clk_hw *hw, unsigned long rate,
@@ -208,7 +210,7 @@ static int axs10x_pll_set_rate(struct clk_hw *hw, unsigned long rate,
 
 static const struct clk_ops axs10x_pll_ops = {
        .recalc_rate = axs10x_pll_recalc_rate,
-       .round_rate = axs10x_pll_round_rate,
+       .determine_rate = axs10x_pll_determine_rate,
        .set_rate = axs10x_pll_set_rate,
 };