Netdev List
 help / color / mirror / Atom feed
From: Richard Cochran <richardcochran@gmail.com>
To: Ganesh Goudar <ganeshgr@chelsio.com>
Cc: netdev@vger.kernel.org, davem@davemloft.net,
	dan.carpenter@oracle.com, atul.gupta@chelsio.com
Subject: Re: [PATCH net] cxgb4: ptp_clock_register() returns error pointers
Date: Tue, 11 Jul 2017 22:20:00 +0200	[thread overview]
Message-ID: <20170711202000.enehgnr4mn54uoug@localhost.localdomain> (raw)
In-Reply-To: <1499783078-4706-1-git-send-email-ganeshgr@chelsio.com>

On Tue, Jul 11, 2017 at 07:54:38PM +0530, Ganesh Goudar wrote:
> diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ptp.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ptp.c
> index 50517cf..06c0de4 100644
> --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ptp.c
> +++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ptp.c
> @@ -441,7 +441,7 @@ void cxgb4_ptp_init(struct adapter *adapter)
>  
>  	adapter->ptp_clock = ptp_clock_register(&adapter->ptp_clock_info,
>  						&adapter->pdev->dev);
> -	if (!adapter->ptp_clock) {
> +	if (IS_ERR_OR_NULL(adapter->ptp_clock)) {

But here you also need

		adapter->ptp_clock = NULL;

>  		dev_err(adapter->pdev_dev,
>  			"PTP %s Clock registration has failed\n", __func__);
>  		return;

because later on you have:

void cxgb4_ptp_stop(struct adapter *adapter)
{
	...

	if (adapter->ptp_clock) {
		ptp_clock_unregister(adapter->ptp_clock);
		adapter->ptp_clock = NULL;
	}
}

Thanks,
Richard

      reply	other threads:[~2017-07-11 20:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-11 14:24 [PATCH net] cxgb4: ptp_clock_register() returns error pointers Ganesh Goudar
2017-07-11 20:20 ` Richard Cochran [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=20170711202000.enehgnr4mn54uoug@localhost.localdomain \
    --to=richardcochran@gmail.com \
    --cc=atul.gupta@chelsio.com \
    --cc=dan.carpenter@oracle.com \
    --cc=davem@davemloft.net \
    --cc=ganeshgr@chelsio.com \
    --cc=netdev@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