linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@jic23.retrosnub.co.uk>
To: Jiecheng Wu <jasonwood2031@gmail.com>
Cc: linux-iio@vger.kernel.org
Subject: Re: [PATCH] hmc5843_i2c.c: fix missing return value check of devm_regmap_init_i2c()
Date: Sun, 19 Aug 2018 12:12:08 +0100	[thread overview]
Message-ID: <20180819121208.19951cde@archlinux> (raw)
In-Reply-To: <20180819021641.3068-1-jasonwood2031@gmail.com>

On Sun, 19 Aug 2018 10:16:41 +0800
Jiecheng Wu <jasonwood2031@gmail.com> wrote:

> Function hmc5843_i2c_probe() defined in
>  drivers/iio/magnetometer/hmc5843_i2c.c calls devm_regmap_init_i2c()
>  to initialise managed register map. As the return value of
>  devm_regmap_init_i2c() will be an ERR_PTR() on error, the return
>  value must be checked against NULL.

This text isn't accurate.  Checking IS_ERR is definitely not checking
against NULL.

+ the issue with missing signoff etc that has already been raised.

Jonathan

> ---
>  drivers/iio/magnetometer/hmc5843_i2c.c | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iio/magnetometer/hmc5843_i2c.c b/drivers/iio/magnetometer/hmc5843_i2c.c
> index 3de7f44..4911cf8 100644
> --- a/drivers/iio/magnetometer/hmc5843_i2c.c
> +++ b/drivers/iio/magnetometer/hmc5843_i2c.c
> @@ -14,6 +14,7 @@
>  #include <linux/regmap.h>
>  #include <linux/iio/iio.h>
>  #include <linux/iio/triggered_buffer.h>
> +#include <linux/device.h>
>  
>  #include "hmc5843.h"
>  
> @@ -58,8 +59,13 @@ static const struct regmap_config hmc5843_i2c_regmap_config = {
>  static int hmc5843_i2c_probe(struct i2c_client *cli,
>  			     const struct i2c_device_id *id)
>  {
> -	return hmc5843_common_probe(&cli->dev,
> -			devm_regmap_init_i2c(cli, &hmc5843_i2c_regmap_config),
> +	struct regmap *regmap;
> +	regmap = devm_regmap_init_i2c(cli, &hmc5843_i2c_regmap_config);
> +	if (IS_ERR(regmap)) {
> +		dev_err(&cli->dev, "Failed to initialize i2c regmap\n");
> +		return PTR_ERR(regmap);
> +	}
> +	return hmc5843_common_probe(&cli->dev, regmap,
>  			id->driver_data, id->name);
>  }
>  

  parent reply	other threads:[~2018-08-19 14:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-19  2:16 [PATCH] hmc5843_i2c.c: fix missing return value check of devm_regmap_init_i2c() Jiecheng Wu
2018-08-19  8:51 ` Himanshu Jha
2018-08-19 11:12 ` Jonathan Cameron [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-08-18  2:08 Jiecheng Wu
2018-08-18 11:37 ` Himanshu Jha

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=20180819121208.19951cde@archlinux \
    --to=jic23@jic23.retrosnub.co.uk \
    --cc=jasonwood2031@gmail.com \
    --cc=linux-iio@vger.kernel.org \
    /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).