On Fri, Feb 22, 2013 at 12:39:30PM +0800, Wei Yongjun wrote: > From: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx> > > In case of error, the function devm_regulator_get() returns > ERR_PTR() and never returns NULL. The NULL test in the return > value check should be replaced with IS_ERR(). > > Signed-off-by: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx> Thanks for the fixing. Acked-by: Shawn Guo <shawn.guo@xxxxxxxxxx> > --- > drivers/cpufreq/imx6q-cpufreq.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/cpufreq/imx6q-cpufreq.c b/drivers/cpufreq/imx6q-cpufreq.c > index d6b6ef3..54e336d 100644 > --- a/drivers/cpufreq/imx6q-cpufreq.c > +++ b/drivers/cpufreq/imx6q-cpufreq.c > @@ -245,7 +245,7 @@ static int imx6q_cpufreq_probe(struct platform_device *pdev) > arm_reg = devm_regulator_get(cpu_dev, "arm"); > pu_reg = devm_regulator_get(cpu_dev, "pu"); > soc_reg = devm_regulator_get(cpu_dev, "soc"); > - if (!arm_reg || !pu_reg || !soc_reg) { > + if (IS_ERR(arm_reg) || IS_ERR(pu_reg) || IS_ERR(soc_reg)) { > dev_err(cpu_dev, "failed to get regulators\n"); > ret = -ENOENT; > goto put_node; > > -- To unsubscribe from this list: send the line "unsubscribe cpufreq" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html