All of lore.kernel.org
 help / color / mirror / Atom feed
From: Varka Bhadram <varkabhadram@gmail.com>
To: Mohammad Jamal <md.jamalmohiuddin@gmail.com>,
	alex.aring@gmail.com, linux-wpan@vger.kernel.org,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH bluetooth-next] ieee802154: cc2520: Replace shift operations by BIT macro
Date: Mon, 26 Jan 2015 19:34:18 +0530	[thread overview]
Message-ID: <54C64962.2070204@gmail.com> (raw)
In-Reply-To: <1422021509-18877-1-git-send-email-md.jamalmohiuddin@gmail.com>

Hi Jamal,

On Friday 23 January 2015 07:28 PM, Mohammad Jamal wrote:
> This patch replaces the shifting operations by BIT macro

Thanks for the patch.

Acked-by: Varka Bhadram <varkabhadram@gmail.com>

> Signed-off-by: Mohammad Jamal <md.jamalmohiuddin@gmail.com>
> ---
>   drivers/net/ieee802154/cc2520.c |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ieee802154/cc2520.c b/drivers/net/ieee802154/cc2520.c
> index 665a3db..181b349 100644
> --- a/drivers/net/ieee802154/cc2520.c
> +++ b/drivers/net/ieee802154/cc2520.c
> @@ -44,9 +44,9 @@
>   #define	CC2520_FREG_MASK	0x3F
>   
>   /* status byte values */
> -#define	CC2520_STATUS_XOSC32M_STABLE	(1 << 7)
> -#define	CC2520_STATUS_RSSI_VALID	(1 << 6)
> -#define	CC2520_STATUS_TX_UNDERFLOW	(1 << 3)
> +#define	CC2520_STATUS_XOSC32M_STABLE	BIT(7)
> +#define	CC2520_STATUS_RSSI_VALID	BIT(6)
> +#define	CC2520_STATUS_TX_UNDERFLOW	BIT(3)
>   
>   /* IEEE-802.15.4 defined constants (2.4 GHz logical channels) */
>   #define	CC2520_MINCHANNEL		11

-- 
Thanks and Regards,
Varka Bhadram.


  reply	other threads:[~2015-01-26 14:04 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-23 13:58 [PATCH bluetooth-next] ieee802154: cc2520: Replace shift operations by BIT macro Mohammad Jamal
2015-01-26 14:04 ` Varka Bhadram [this message]
2015-02-02  5:10 ` Marcel Holtmann

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=54C64962.2070204@gmail.com \
    --to=varkabhadram@gmail.com \
    --cc=alex.aring@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wpan@vger.kernel.org \
    --cc=md.jamalmohiuddin@gmail.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 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.