Re: [PATCH 2/2] cpufreq: sun50i: replace of_node_put() with automatic cleanup handler

From: Viresh Kumar
Date: Mon May 20 2024 - 04:35:36 EST


On 10-05-24, 18:42, Andre Przywara wrote:
> On Fri, 03 May 2024 19:52:33 +0200
> Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx> wrote:
> > Signed-off-by: Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx>
>
> Reviewed-by: Andre Przywara <andre.przywara@xxxxxxx>
>
> I haven't tested the error paths yet, but it certainly boots fine on an
> OrangePi Zero3.
>
> > ---
> > drivers/cpufreq/sun50i-cpufreq-nvmem.c | 25 ++++++++-----------------
> > 1 file changed, 8 insertions(+), 17 deletions(-)
> >
> > diff --git a/drivers/cpufreq/sun50i-cpufreq-nvmem.c b/drivers/cpufreq/sun50i-cpufreq-nvmem.c
> > index ef83e4bf2639..eb47c193269c 100644
> > --- a/drivers/cpufreq/sun50i-cpufreq-nvmem.c
> > +++ b/drivers/cpufreq/sun50i-cpufreq-nvmem.c
> > @@ -131,14 +131,14 @@ static const struct of_device_id cpu_opp_match_list[] = {
> > static bool dt_has_supported_hw(void)
> > {
> > bool has_opp_supported_hw = false;
> > - struct device_node *np;
> > struct device *cpu_dev;
> >
> > cpu_dev = get_cpu_device(0);
> > if (!cpu_dev)
> > return false;
> >
> > - np = dev_pm_opp_of_get_opp_desc_node(cpu_dev);
> > + struct device_node *np __free(device_node) =
> > + dev_pm_opp_of_get_opp_desc_node(cpu_dev);

Won't that result in build warning, mixed code and definitions now ?


--
viresh