All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Alex Shi <alex.shi@linux.alibaba.com>
Cc: Arnd Bergmann <arnd@arndb.de>,
	Harald Welte <laforge@gnumonks.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] pcmcia/cm4000: remove useless variable tmp
Date: Tue, 21 Jan 2020 17:24:59 +0100	[thread overview]
Message-ID: <20200121162459.GA592268@kroah.com> (raw)
In-Reply-To: <37f03cf9-5666-7561-13f6-2ff72e936b7a@linux.alibaba.com>

On Tue, Jan 21, 2020 at 05:53:53PM +0800, Alex Shi wrote:
> 
> 
> 在 2020/1/21 下午5:08, Arnd Bergmann 写道:
> > On Tue, Jan 21, 2020 at 9:50 AM Alex Shi <alex.shi@linux.alibaba.com> wrote:
> >>
> >> No one care the value of 'tmp' in func cmm_write. better to remove it.
> > 
> > Hi Alex,
> > 
> >> @@ -1146,7 +1145,7 @@ static ssize_t cmm_write(struct file *filp, const char __user *buf,
> >>         set_cardparameter(dev);
> >>
> >>         /* dummy read, reset flag procedure received */
> >> -       tmp = inb(REG_FLAGS1(iobase));
> >> +       inb(REG_FLAGS1(iobase));
> > 
> > I think this may cause warnings on some architectures, when inb() is a macro
> > that just turns into a pointer dereference. You could write it as
> > 
> >      (void)inb(REG_FLAGS1(iobase));
> > 
> > which would not warn anywhere.
> > 
> >       Arnd
> > 
> 
> Thanks a lot Arnd!
> 
> 
> >From 9e54770c6911ae7da7d2f74774bbef019e459bc9 Mon Sep 17 00:00:00 2001
> From: Alex Shi <alex.shi@linux.alibaba.com>
> Date: Fri, 17 Jan 2020 09:10:47 +0800
> Subject: [PATCH v2] pcmcia/cm4000: remove useless variable tmp
> 
> No one care the value of 'tmp' in func cmm_write. better to remove it.
> 
> Arnd Bergmann pointed just remove may cause warning in some arch where 
> inb is macro, and suggest add a cast '(void)' for this. Thanks!
> 
> Signed-off-by: Alex Shi <alex.shi@linux.alibaba.com>
> Cc: Harald Welte <laforge@gnumonks.org>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: linux-kernel@vger.kernel.org
> ---
>  drivers/char/pcmcia/cm4000_cs.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/char/pcmcia/cm4000_cs.c b/drivers/char/pcmcia/cm4000_cs.c
> index 15bf585af5d3..0f55bed6c71f 100644
> --- a/drivers/char/pcmcia/cm4000_cs.c
> +++ b/drivers/char/pcmcia/cm4000_cs.c
> @@ -1048,7 +1048,6 @@ static ssize_t cmm_write(struct file *filp, const char __user *buf,
>  	struct cm4000_dev *dev = filp->private_data;
>  	unsigned int iobase = dev->p_dev->resource[0]->start;
>  	unsigned short s;
> -	unsigned char tmp;
>  	unsigned char infolen;
>  	unsigned char sendT0;
>  	unsigned short nsend;
> @@ -1146,7 +1145,7 @@ static ssize_t cmm_write(struct file *filp, const char __user *buf,
>  	set_cardparameter(dev);
>  
>  	/* dummy read, reset flag procedure received */
> -	tmp = inb(REG_FLAGS1(iobase));
> +	(void)inb(REG_FLAGS1(iobase));

That's horrid, just keep tmp :)


      parent reply	other threads:[~2020-01-21 16:25 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-21  8:49 [PATCH] pcmcia/cm4000: remove useless variable tmp Alex Shi
2020-01-21  9:08 ` Arnd Bergmann
2020-01-21  9:53   ` Alex Shi
2020-01-21 10:13     ` Arnd Bergmann
2020-01-21 16:24     ` Greg Kroah-Hartman [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=20200121162459.GA592268@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=alex.shi@linux.alibaba.com \
    --cc=arnd@arndb.de \
    --cc=laforge@gnumonks.org \
    --cc=linux-kernel@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 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.