Linux Renesas SOC kernel development
 help / color / mirror / Atom feed
From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
To: Biju Das <biju.das@bp.renesas.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-usb@vger.kernel.org,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Simon Horman <horms@verge.net.au>,
	Chris Paterson <Chris.Paterson2@renesas.com>,
	Fabrizio Castro <fabrizio.castro@bp.renesas.com>,
	linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH] usb: typec: hd3ss3220: hd3ss3220_probe() warn: passing zero to 'PTR_ERR'
Date: Tue, 8 Oct 2019 15:32:31 +0300	[thread overview]
Message-ID: <20191008123231.GB12909@kuha.fi.intel.com> (raw)
In-Reply-To: <1570462729-25722-1-git-send-email-biju.das@bp.renesas.com>

On Mon, Oct 07, 2019 at 04:38:49PM +0100, Biju Das wrote:
> This patch fixes the warning passing zero to 'PTR_ERR' by changing the
> check from 'IS_ERR_OR_NULL' to 'IS_ERR'. Also improved the error handling
> on probe function.
> 
> Fixes: 1c48c759ef4b ("usb: typec: driver for TI HD3SS3220 USB Type-C DRP port controller")
> Reported-by: kbuild test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>

OK by me. FWIW:

Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

> ---
>  drivers/usb/typec/hd3ss3220.c | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/usb/typec/hd3ss3220.c b/drivers/usb/typec/hd3ss3220.c
> index 1900910..7e5f3f7 100644
> --- a/drivers/usb/typec/hd3ss3220.c
> +++ b/drivers/usb/typec/hd3ss3220.c
> @@ -178,7 +178,7 @@ static int hd3ss3220_probe(struct i2c_client *client,
>  
>  	hd3ss3220->role_sw = fwnode_usb_role_switch_get(connector);
>  	fwnode_handle_put(connector);
> -	if (IS_ERR_OR_NULL(hd3ss3220->role_sw))
> +	if (IS_ERR(hd3ss3220->role_sw))
>  		return PTR_ERR(hd3ss3220->role_sw);
>  
>  	hd3ss3220->typec_cap.prefer_role = TYPEC_NO_PREFERRED_ROLE;
> @@ -188,20 +188,22 @@ static int hd3ss3220_probe(struct i2c_client *client,
>  
>  	hd3ss3220->port = typec_register_port(&client->dev,
>  					      &hd3ss3220->typec_cap);
> -	if (IS_ERR(hd3ss3220->port))
> -		return PTR_ERR(hd3ss3220->port);
> +	if (IS_ERR(hd3ss3220->port)) {
> +		ret = PTR_ERR(hd3ss3220->port);
> +		goto err_put_role;
> +	}
>  
>  	hd3ss3220_set_role(hd3ss3220);
>  	ret = regmap_read(hd3ss3220->regmap, HD3SS3220_REG_CN_STAT_CTRL, &data);
>  	if (ret < 0)
> -		goto error;
> +		goto err_unreg_port;
>  
>  	if (data & HD3SS3220_REG_CN_STAT_CTRL_INT_STATUS) {
>  		ret = regmap_write(hd3ss3220->regmap,
>  				HD3SS3220_REG_CN_STAT_CTRL,
>  				data | HD3SS3220_REG_CN_STAT_CTRL_INT_STATUS);
>  		if (ret < 0)
> -			goto error;
> +			goto err_unreg_port;
>  	}
>  
>  	if (client->irq > 0) {
> @@ -210,18 +212,19 @@ static int hd3ss3220_probe(struct i2c_client *client,
>  					IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
>  					"hd3ss3220", &client->dev);
>  		if (ret)
> -			goto error;
> +			goto err_unreg_port;
>  	}
>  
>  	ret = i2c_smbus_read_byte_data(client, HD3SS3220_REG_DEV_REV);
>  	if (ret < 0)
> -		goto error;
> +		goto err_unreg_port;
>  
>  	dev_info(&client->dev, "probed revision=0x%x\n", ret);
>  
>  	return 0;
> -error:
> +err_unreg_port:
>  	typec_unregister_port(hd3ss3220->port);
> +err_put_role:
>  	usb_role_switch_put(hd3ss3220->role_sw);
>  
>  	return ret;
> -- 
> 2.7.4

thanks,

-- 
heikki

      reply	other threads:[~2019-10-08 12:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-07 15:38 [PATCH] usb: typec: hd3ss3220: hd3ss3220_probe() warn: passing zero to 'PTR_ERR' Biju Das
2019-10-08 12:32 ` Heikki Krogerus [this message]

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=20191008123231.GB12909@kuha.fi.intel.com \
    --to=heikki.krogerus@linux.intel.com \
    --cc=Chris.Paterson2@renesas.com \
    --cc=biju.das@bp.renesas.com \
    --cc=dan.carpenter@oracle.com \
    --cc=fabrizio.castro@bp.renesas.com \
    --cc=geert+renesas@glider.be \
    --cc=gregkh@linuxfoundation.org \
    --cc=horms@verge.net.au \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=linux-usb@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