lkml.org 
[lkml]   [2019]   [Aug]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    From
    SubjectRe: [PATCH 3/9] clk: meson: axg-audio: Don't reference clk_init_data after registration
    Date
    On Wed 31 Jul 2019 at 12:35, Stephen Boyd <sboyd@kernel.org> 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@baylibre.com>
    > Cc: Jerome Brunet <jbrunet@baylibre.com>
    > Signed-off-by: Stephen Boyd <sboyd@kernel.org>
    > ---
    >
    > 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

    \
     
     \ /
      Last update: 2019-08-06 10:50    [W:2.881 / U:0.028 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site