[PATCH v2] drivers: clk: (clk-nomadik) Add missing of_node_put()

Stephen Boyd sboyd at kernel.org
Wed Jun 15 23:02:23 PDT 2022


Same subject line comment applies here. Look at previous patches to the
file.

Quoting Liang He (2022-06-15 20:24:48)
> diff --git a/drivers/clk/clk-nomadik.c b/drivers/clk/clk-nomadik.c
> index bad2677e11ae..48d5772b36a5 100644
> --- a/drivers/clk/clk-nomadik.c
> +++ b/drivers/clk/clk-nomadik.c
> @@ -99,7 +99,7 @@ static void __init nomadik_src_init(void)
>         if (!src_base) {
>                 pr_err("%s: must have src parent node with REGS (%pOFn)\n",
>                        __func__, np);
> -               return;
> +               goto out_put;
>         }
>  
>         /* Set all timers to use the 2.4 MHz TIMCLK */
> @@ -132,6 +132,9 @@ static void __init nomadik_src_init(void)
>         }
>         writel(val, src_base + SRC_XTALCR);
>         register_reboot_notifier(&nomadik_clk_reboot_notifier);
> +       
> +output:
> +    of_node_put(np);   

tabbed incorrectly?



More information about the linux-arm-kernel mailing list