Re: [PATCH] clk: bm1880: remove kfrees on static allocations

From: Stephen Boyd
Date: Thu Jan 06 2022 - 20:46:58 EST


Quoting conor.dooley@xxxxxxxxxxxxx (2021-12-23 07:42:44)
> From: Conor Dooley <conor.dooley@xxxxxxxxxxxxx>
>
> bm1880_clk_unregister_pll & bm1880_clk_unregister_div both try to
> free statically allocated variables, so remove those kfrees.
>
> For example, if we take L703 kfree(div_hw):
> - div_hw is a bm1880_div_hw_clock pointer
> - in bm1880_clk_register_plls this is pointed to an element of arg1:
> struct bm1880_div_hw_clock *clks
> - in the probe, where bm1880_clk_register_plls is called arg1 is
> bm1880_div_clks, defined on L371:
> static struct bm1880_div_hw_clock bm1880_div_clks[]
>
> Signed-off-by: Conor Dooley <conor.dooley@xxxxxxxxxxxxx>
> ---

Applied to clk-next