Re: [PATCH v3 3/9] clk: test: introduce clk_dummy_div for a mock divider

From: Brian Masney
Date: Mon Aug 18 2025 - 16:02:21 EST


On Tue, Aug 12, 2025 at 10:40 AM Brian Masney <bmasney@xxxxxxxxxx> wrote:
> +static long clk_dummy_div_round_rate(struct clk_hw *hw, unsigned long rate,
> + unsigned long *parent_rate)
> +{
> + return divider_round_rate(hw, rate, parent_rate, NULL,
> + CLK_DUMMY_DIV_WIDTH, CLK_DUMMY_DIV_FLAGS);
> +}

I sent the wrong version of this patch with the round_rate instead of
the determine_rate implementation. Kind of ironic given that I posted
various series across the kernel to get rid of round_rate!

Brian