Re: [PATCH 3/9] clk: meson: axg-audio: Don't reference clk_init_data after registration

From: Jerome Brunet
Date: Tue Aug 06 2019 - 04:49:53 EST


On Wed 31 Jul 2019 at 12:35, Stephen Boyd <sboyd@xxxxxxxxxx> wrote:

> A future patch is going to change semantics of clk_register() so that
> clk_hw::init is guaranteed to be NULL after a clk is registered. Avoid
> referencing this member here so that we don't run into NULL pointer
> exceptions.

Hi Stephen,

What to do you indend to do with this one ? Will you apply directly or
should we take it ?

We have several changes for the controller which may conflict with this
one. It is nothing major but the sooner I know how this changes goes in,
the sooner I can rebase the rest.

Also, We were (re)using the init_data only on register failures.
I understand that you want to guarantee .init is NULL when the clock is
registered, but it this particular case, the registeration failed so the
clock is not registered.

IMO, it would be better if devm_clk_hw_register() left the init_data
untouched if the registration fails.

>
> Cc: Neil Armstrong <narmstrong@xxxxxxxxxxxx>
> Cc: Jerome Brunet <jbrunet@xxxxxxxxxxxx>
> Signed-off-by: Stephen Boyd <sboyd@xxxxxxxxxx>
> ---
>
> Please ack so I can take this through clk tree
>
> drivers/clk/meson/axg-audio.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/meson/axg-audio.c b/drivers/clk/meson/axg-audio.c
> index 8028ff6f6610..db0b73d53551 100644
> --- a/drivers/clk/meson/axg-audio.c
> +++ b/drivers/clk/meson/axg-audio.c
> @@ -992,15 +992,18 @@ static int axg_audio_clkc_probe(struct platform_device *pdev)
>
> /* Take care to skip the registered input clocks */
> for (i = AUD_CLKID_DDR_ARB; i < data->hw_onecell_data->num; i++) {
> + const char *name;
> +
> hw = data->hw_onecell_data->hws[i];
> /* array might be sparse */
> if (!hw)
> continue;
>
> + name = hw->init->name;
> +
> ret = devm_clk_hw_register(dev, hw);
> if (ret) {
> - dev_err(dev, "failed to register clock %s\n",
> - hw->init->name);
> + dev_err(dev, "failed to register clock %s\n", name);
> return ret;
> }
> }
> --
> Sent by a computer through tubes