From mboxrd@z Thu Jan 1 00:00:00 1970 From: Subject: RE: [PATCH v7 12/14] cpufreq: Add Kryo CPU scaling driver Date: Thu, 17 May 2018 10:50:34 +0300 Message-ID: <017601d3edb3$c0d96d40$428c47c0$@codeaurora.org> References: <1526375616-16904-1-git-send-email-ilialin@codeaurora.org> <1526375616-16904-13-git-send-email-ilialin@codeaurora.org> <20180516141132.aqjif7d5motmmnlo@vireshk-i7> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20180516141132.aqjif7d5motmmnlo@vireshk-i7> Content-Language: en-us Sender: linux-kernel-owner@vger.kernel.org To: 'Viresh Kumar' , 'Amit Kucheria' Cc: 'Michael Turquette' , sboyd@kernel.org, 'Rob Herring' , 'Mark Rutland' , nm@ti.com, lgirdwood@gmail.com, broonie@kernel.org, 'Andy Gross' , 'David Brown' , catalin.marinas@arm.com, will.deacon@arm.com, "'Rafael J. Wysocki'" , linux-clk@vger.kernel.org, devicetree@vger.kernel.org, 'LKML' , 'Linux PM list' , linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org, 'lakml' , 'Rajendra Nayak' , nicolas.dechesne@linaro.org, celster@codeaurora.org, tfinkel@codeaurora.org List-Id: devicetree@vger.kernel.org > -----Original Message----- > From: Viresh Kumar > Sent: Wednesday, May 16, 2018 17:12 > To: Amit Kucheria > Cc: Ilia Lin ; Michael Turquette > ; sboyd@kernel.org; Rob Herring > ; Mark Rutland ; nm@ti.com; > lgirdwood@gmail.com; broonie@kernel.org; Andy Gross > ; David Brown ; > catalin.marinas@arm.com; will.deacon@arm.com; Rafael J. Wysocki > ; linux-clk@vger.kernel.org; > devicetree@vger.kernel.org; LKML ; Linux > PM list ; linux-arm-msm@vger.kernel.org; linux- > soc@vger.kernel.org; lakml ; > Rajendra Nayak ; nicolas.dechesne@linaro.org; > celster@codeaurora.org; tfinkel@codeaurora.org > Subject: Re: [PATCH v7 12/14] cpufreq: Add Kryo CPU scaling driver > > On 16-05-18, 16:12, Amit Kucheria wrote: > > > + ret = PTR_ERR_OR_ZERO(opp_temp = > > > + > dev_pm_opp_set_supported_hw(cpu_dev,&versions,1)); > > > + if (0 > ret) > > > > Any particular reason to prefer this over (ret < 0) that is generally > > used? I've seen it used to avoid the == vs. = typos, but not for other > > comparisons. > > > > Suggest sticking to what is commonly used i.e. ret < 0. > > > > > + goto free_opp; > > > + > > > + cpu_dev = get_cpu_device(GOLD_LEAD); > > > > Error check cpu_dev here? > > > > > + ret = PTR_ERR_OR_ZERO(opp_temp = > > > + > dev_pm_opp_set_supported_hw(cpu_dev,&versions,1)); > > > + if (0 > ret) > > > + goto free_opp; > > The goto here is wrong If we are here, then the first dev_pm_opp_set_supported_hw() succeeded. And should be deallocated before exit with error. > > > > + > > > + > > > + ret = > PTR_ERR_OR_ZERO(platform_device_register_simple("cpufreq-dt", > > > + -1, > > > + NULL, 0)); > > > + > > > + if (0 == ret) > > > + return 0; > > > + > > > +free_opp: > > > + dev_pm_opp_put_supported_hw(opp_temp); > > > > This is not needed because dev_pm_opp_set_supported_hw will free > > memory in case of failure. This call in only needed in case of a > > successful get. > > But this is still required for the case where platform device registration fails. > > -- > viresh