diff options
author | Shraddha Barke <shraddha.6596@gmail.com> | 2015-12-27 02:44:45 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-07 20:10:47 -0800 |
commit | c5af6be354e3e4c10fc54d48f5a4fb6744ea293a (patch) | |
tree | 98150559e85f237534df7231a98073274e49f129 | |
parent | 3184f989c43ecc5f6d843925cd035f3a39895d21 (diff) |
Staging: gdm72xx: Prefer using the BIT macro
Replace bit shifting on 1 with the BIT(x) macro
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/gdm72xx/gdm_usb.h | 4 | ||||
-rw-r--r-- | drivers/staging/gdm72xx/hci.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/drivers/staging/gdm72xx/gdm_usb.h b/drivers/staging/gdm72xx/gdm_usb.h index f128914f8f54..d864928cdf41 100644 --- a/drivers/staging/gdm72xx/gdm_usb.h +++ b/drivers/staging/gdm72xx/gdm_usb.h @@ -18,8 +18,8 @@ #include <linux/usb.h> #include <linux/list.h> -#define B_DIFF_DL_DRV (1 << 4) -#define B_DOWNLOAD (1 << 5) +#define B_DIFF_DL_DRV BIT(4) +#define B_DOWNLOAD BIT(5) #define MAX_NR_SDU_BUF 64 struct usb_tx { diff --git a/drivers/staging/gdm72xx/hci.h b/drivers/staging/gdm72xx/hci.h index 03c9f305b562..ab903d427951 100644 --- a/drivers/staging/gdm72xx/hci.h +++ b/drivers/staging/gdm72xx/hci.h @@ -198,10 +198,10 @@ #define T_DUPLEX_MODE (0xdb | (4 << 16)) /* T_CAPABILITY */ -#define T_CAPABILITY_MULTI_CS (1 << 0) -#define T_CAPABILITY_WIMAX (1 << 1) -#define T_CAPABILITY_QOS (1 << 2) -#define T_CAPABILITY_AGGREGATION (1 << 3) +#define T_CAPABILITY_MULTI_CS BIT(0) +#define T_CAPABILITY_WIMAX BIT(1) +#define T_CAPABILITY_QOS BIT(2) +#define T_CAPABILITY_AGGREGATION BIT(3) struct hci_s { __be16 cmd_evt; |