mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
staging/rtl8712 : Remove duplicated BIT() definitions
The BIT() macro is already defined in bitops.h, remove duplicate definitions. Signed-off-by: Anish Bhatt <anish@chelsio.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
27934f362a
commit
4c021dc0b8
@ -60,10 +60,6 @@ struct __queue {
|
||||
#define LIST_CONTAINOR(ptr, type, member) \
|
||||
((type *)((char *)(ptr)-(SIZE_T)(&((type *)0)->member)))
|
||||
|
||||
#ifndef BIT
|
||||
#define BIT(x) (1 << (x))
|
||||
#endif
|
||||
|
||||
static inline u32 _down_sema(struct semaphore *sema)
|
||||
{
|
||||
if (down_interruptible(sema))
|
||||
|
@ -28,11 +28,6 @@
|
||||
|
||||
#include <linux/compiler.h>
|
||||
|
||||
#ifdef BIT
|
||||
#undef BIT
|
||||
#endif
|
||||
#define BIT(x) (1 << (x))
|
||||
|
||||
#define WLAN_IEEE_OUI_LEN 3
|
||||
#define WLAN_CRC_LEN 4
|
||||
#define WLAN_BSSID_LEN 6
|
||||
|
Loading…
Reference in New Issue
Block a user