All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Cc: outreachy-kernel@googlegroups.com
Subject: Re: [Outreachy kernel] [PATCH v2 1/3] staging: rtl8712: Place constants on the right side of '&'
Date: Fri, 11 Mar 2016 10:29:06 -0800	[thread overview]
Message-ID: <20160311182906.GA17828@kroah.com> (raw)
In-Reply-To: <20160221082106.GA24203@Karyakshetra>

On Sun, Feb 21, 2016 at 01:51:06PM +0530, Bhaktipriya Shridhar wrote:
> Move constants to the right of binary operator '&'.
> This issue was identified using the Coccinelle script:
> @@
> constant c,c1;
> expression e,e1,e2;
> local idexpression i;
> binary operator b = {==,!=,&,|};
> @@
> 
> (
> c b (c1)
> |
> i b e1
> |
> c | e1 | e2 | ...
> |
> c | (e ? e1 : e2)
> |
> - c
> + e
> b
> - e
> + c
> )
> 
> Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
> ---
>  Changes in v2:
> 	-change subject line
> 	-inserted Coccinelle script
>  drivers/staging/rtl8712/wifi.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/rtl8712/wifi.h b/drivers/staging/rtl8712/wifi.h
> index 7a352c4..ee41971 100644
> --- a/drivers/staging/rtl8712/wifi.h
> +++ b/drivers/staging/rtl8712/wifi.h
> @@ -260,12 +260,12 @@ enum WIFI_REG_DOMAIN {
>  	*(unsigned short *)((addr_t)(pbuf) + 22) = \
>  	((*(unsigned short *)((addr_t)(pbuf) + 22)) & \
>  	le16_to_cpu((unsigned short)0x000f)) | \
> -	le16_to_cpu((unsigned short)(0xfff0 & (num << 4))); \
> +	le16_to_cpu((unsigned short)((num << 4) & 0xfff0)); \
>  })
> 
>  #define SetDuration(pbuf, dur) ({ \
>  	*(unsigned short *)((addr_t)(pbuf) + 2) |= \
> -	cpu_to_le16(0xffff & (dur)); \
> +	cpu_to_le16((dur) & 0xffff); \

Why?  What does this change really?  Is it needed?  The code is just as
readable before as after, which should be the only reason you do stuff
like this.

greg k-h


      reply	other threads:[~2016-03-11 18:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-21  8:21 [PATCH v2 1/3] staging: rtl8712: Place constants on the right side of '&' Bhaktipriya Shridhar
2016-03-11 18:29 ` Greg KH [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=20160311182906.GA17828@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=bhaktipriya96@gmail.com \
    --cc=outreachy-kernel@googlegroups.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.