]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
clk: si544: convert from round_rate() to determine_rate()
authorBrian Masney <bmasney@redhat.com>
Mon, 11 Aug 2025 15:18:36 +0000 (11:18 -0400)
committerBrian Masney <bmasney@redhat.com>
Mon, 8 Sep 2025 13:41:28 +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/clk-si544.c

index ca3473efa314b44b7eff6bc3ec9eafa518e0bd9e..09c06ecec1a52a6a521428e349cbd4cf166bbea3 100644 (file)
@@ -307,16 +307,16 @@ static unsigned long si544_recalc_rate(struct clk_hw *hw,
        return si544_calc_rate(&settings);
 }
 
-static long si544_round_rate(struct clk_hw *hw, unsigned long rate,
-               unsigned long *parent_rate)
+static int si544_determine_rate(struct clk_hw *hw,
+                               struct clk_rate_request *req)
 {
        struct clk_si544 *data = to_clk_si544(hw);
 
-       if (!is_valid_frequency(data, rate))
+       if (!is_valid_frequency(data, req->rate))
                return -EINVAL;
 
        /* The accuracy is less than 1 Hz, so any rate is possible */
-       return rate;
+       return 0;
 }
 
 /* Calculates the maximum "small" change, 950 * rate / 1000000 */
@@ -408,7 +408,7 @@ static const struct clk_ops si544_clk_ops = {
        .unprepare = si544_unprepare,
        .is_prepared = si544_is_prepared,
        .recalc_rate = si544_recalc_rate,
-       .round_rate = si544_round_rate,
+       .determine_rate = si544_determine_rate,
        .set_rate = si544_set_rate,
 };