Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 908edc54 authored by Mohammad Jamal's avatar Mohammad Jamal Committed by Marcel Holtmann
Browse files

ieee802154: cc2520: Replace shift operations by BIT macro



This patch replaces the shifting operations by BIT macro

Signed-off-by: default avatarMohammad Jamal <md.jamalmohiuddin@gmail.com>
Acked-by: default avatarVarka Bhadram <varkabhadram@gmail.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent bf21d793
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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