]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: use BIT macro
authorChaehyun Lim <chaehyun.lim@gmail.com>
Tue, 15 Sep 2015 05:06:19 +0000 (14:06 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Sep 2015 13:52:48 +0000 (06:52 -0700)
This patch replaces bit shift with BIT(x) macro.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wfi_cfgoperations.h

index 51f9413ec8031a5021a33e709145a05fd4ea8785..edf5ec0adf2ad6e91d17e7fbc802aa257ac5f984 100644 (file)
 #include "wilc_wfi_netdevice.h"
 
 /* The following macros describe the bitfield map used by the firmware to determine its 11i mode */
-#define NO_ENCRYPT                     0
-#define ENCRYPT_ENABLED        (1 << 0)
-#define WEP                                    (1 << 1)
-#define WEP_EXTENDED           (1 << 2)
-#define WPA                                    (1 << 3)
-#define WPA2                           (1 << 4)
-#define AES                                    (1 << 5)
-#define TKIP                                   (1 << 6)
+#define NO_ENCRYPT             0
+#define ENCRYPT_ENABLED                BIT(0)
+#define WEP                    BIT(1)
+#define WEP_EXTENDED           BIT(2)
+#define WPA                    BIT(3)
+#define WPA2                   BIT(4)
+#define AES                    BIT(5)
+#define TKIP                   BIT(6)
 
 #ifdef WILC_P2P
 /* #define     USE_SUPPLICANT_GO_INTENT */