linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Guru Das Srinagesh <gurus@codeaurora.org>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Yang Yingliang <yangyingliang@huawei.com>,
	open list <linux-kernel@vger.kernel.org>,
	"open list:DRM DRIVER FOR MSM ADRENO GPU" 
	<linux-arm-msm@vger.kernel.org>, Lee Jones <lee.jones@linaro.org>,
	Andy Gross <agross@kernel.org>
Subject: Re: [PATCH -next] mfd: pm8008: Fix return value check in pm8008_probe()
Date: Thu, 3 Jun 2021 12:05:06 -0700	[thread overview]
Message-ID: <20210603190506.GA24042@codeaurora.org> (raw)
In-Reply-To: <CAA8EJprf+ipk45c-niM1PAHCwn5huBEyvBpQA=dgQMohN43E5g@mail.gmail.com>

On Thu, Jun 03, 2021 at 08:31:28PM +0300, Dmitry Baryshkov wrote:
> On Thu, 3 Jun 2021 at 20:18, Guru Das Srinagesh <gurus@codeaurora.org> wrote:
> >
> > On Thu, Jun 03, 2021 at 10:13:57PM +0800, Yang Yingliang wrote:
> > > In case of error, the function devm_regmap_init_i2c() returns ERR_PTR()
> > > and never returns NULL. The NULL test in the return value check
> > > should be replaced with IS_ERR().
> > >
> > > Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC")
> > > Reported-by: Hulk Robot <hulkci@huawei.com>
> > > Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> >
> > Acked-by: Guru Das Srinagesh <gurus@codeaurora.org>
> 
> Interestingly, the change does not correspond to the changelog
> message. And the code is correct as devm_kzalloc returns NULL if I
> remember correctly.

Thanks for pointing that out - I missed that. I would like to retract my
Acked-by for this patch.

> 
> >
> > > ---
> > >  drivers/mfd/qcom-pm8008.c | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/mfd/qcom-pm8008.c b/drivers/mfd/qcom-pm8008.c
> > > index c472d7f8103c..dfefa60d693b 100644
> > > --- a/drivers/mfd/qcom-pm8008.c
> > > +++ b/drivers/mfd/qcom-pm8008.c
> > > @@ -223,7 +223,7 @@ static int pm8008_probe(struct i2c_client *client)
> > >       struct pm8008_data *chip;
> > >
> > >       chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
> > > -     if (!chip)
> > > +     if (IS_ERR(chip))
> > >               return -ENOMEM;
> > >
> > >       chip->dev = &client->dev;
> > > --
> > > 2.25.1
> > >
> 
> 
> 
> -- 
> With best wishes
> Dmitry

  reply	other threads:[~2021-06-03 19:05 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-03 14:13 [PATCH -next] mfd: pm8008: Fix return value check in pm8008_probe() Yang Yingliang
2021-06-03 17:12 ` Guru Das Srinagesh
2021-06-03 17:31   ` Dmitry Baryshkov
2021-06-03 19:05     ` Guru Das Srinagesh [this message]
2021-06-04  1:26       ` Yang Yingliang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210603190506.GA24042@codeaurora.org \
    --to=gurus@codeaurora.org \
    --cc=agross@kernel.org \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=lee.jones@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=yangyingliang@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).