All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Cc: Lior Dotan <liodot@gmail.com>,
	Christopher Harrer <charrer@alacritech.com>,
	devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging: slicoss: remove unused variables
Date: Wed, 9 Sep 2015 11:31:37 -0700	[thread overview]
Message-ID: <20150909183137.GA7680@kroah.com> (raw)
In-Reply-To: <1441372998-22760-1-git-send-email-sudipm.mukherjee@gmail.com>

On Fri, Sep 04, 2015 at 06:53:18PM +0530, Sudip Mukherjee wrote:
> These variables were only assigned some values but they were never used.
> 
> Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> ---
>  drivers/staging/slicoss/slicoss.c | 27 ++++++---------------------
>  1 file changed, 6 insertions(+), 21 deletions(-)
> 
> diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c
> index 8585970..1536ca0 100644
> --- a/drivers/staging/slicoss/slicoss.c
> +++ b/drivers/staging/slicoss/slicoss.c
> @@ -199,10 +199,8 @@ static void slic_mcast_set_mask(struct adapter *adapter)
>  static void slic_timer_ping(ulong dev)
>  {
>  	struct adapter *adapter;
> -	struct sliccard *card;
>  
>  	adapter = netdev_priv((struct net_device *)dev);
> -	card = adapter->card;
>  
>  	adapter->pingtimer.expires = jiffies + (PING_TIMER_INTERVAL * HZ);
>  	add_timer(&adapter->pingtimer);
> @@ -1719,7 +1717,6 @@ static u32 slic_rcvqueue_reinsert(struct adapter *adapter, struct sk_buff *skb)
>   */
>  static void slic_link_event_handler(struct adapter *adapter)
>  {
> -	int status;
>  	struct slic_shmem *pshmem;
>  
>  	if (adapter->state != ADAPT_UP) {
> @@ -1730,15 +1727,13 @@ static void slic_link_event_handler(struct adapter *adapter)
>  	pshmem = (struct slic_shmem *)(unsigned long)adapter->phys_shmem;
>  
>  #if BITS_PER_LONG == 64
> -	status = slic_upr_request(adapter,
> -				  SLIC_UPR_RLSR,
> -				  SLIC_GET_ADDR_LOW(&pshmem->linkstatus),
> -				  SLIC_GET_ADDR_HIGH(&pshmem->linkstatus),
> -				  0, 0);
> +	slic_upr_request(adapter, SLIC_UPR_RLSR,
> +			 SLIC_GET_ADDR_LOW(&pshmem->linkstatus),
> +			 SLIC_GET_ADDR_HIGH(&pshmem->linkstatus), 0, 0);
>  #else
> -	status = slic_upr_request(adapter, SLIC_UPR_RLSR,
> -		(u32) &pshmem->linkstatus,	/* no 4GB wrap guaranteed */
> -				  0, 0, 0);
> +	slic_upr_request(adapter, SLIC_UPR_RLSR,
> +			 (u32)&pshmem->linkstatus, /* no 4GB wrap guaranteed */
> +			 0, 0, 0);

Shouldn't we do something with status instead of just ignoring it?

thanks,

greg k-h

  parent reply	other threads:[~2015-09-09 19:52 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-04 13:23 [PATCH] staging: slicoss: remove unused variables Sudip Mukherjee
2015-09-04 18:13 ` David Matlack
2015-09-05  8:08   ` Sudip Mukherjee
2015-09-09 18:31 ` Greg Kroah-Hartman [this message]
2015-09-10 13:22   ` Sudip Mukherjee
2015-09-12  2:51     ` Greg Kroah-Hartman

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=20150909183137.GA7680@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=charrer@alacritech.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=liodot@gmail.com \
    --cc=sudipm.mukherjee@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.