aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wlan-ng/p80211ioctl.h
diff options
context:
space:
mode:
authorMoritz Muehlenhoff <jmm@debian.org>2009-01-25 21:54:55 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 14:53:17 -0700
commit7f6e0e449c00bafe1c46471409fa1b8e4222dcf2 (patch)
tree5a68fc0fcfe2e8a020dfd23f867399c0b3460095 /drivers/staging/wlan-ng/p80211ioctl.h
parentStaging: wlan-ng: Use generic byteorder macros (diff)
downloadlinux-dev-7f6e0e449c00bafe1c46471409fa1b8e4222dcf2.tar.xz
linux-dev-7f6e0e449c00bafe1c46471409fa1b8e4222dcf2.zip
Staging: wlan-ng: Replace BITx with the generic BIT(x)
Signed-off-by: Moritz Muehlenhoff <jmm@debian.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/wlan-ng/p80211ioctl.h')
-rw-r--r--drivers/staging/wlan-ng/p80211ioctl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wlan-ng/p80211ioctl.h b/drivers/staging/wlan-ng/p80211ioctl.h
index d964d411cc7d..7b0f3e09c0ba 100644
--- a/drivers/staging/wlan-ng/p80211ioctl.h
+++ b/drivers/staging/wlan-ng/p80211ioctl.h
@@ -86,9 +86,9 @@
/*----------------------------------------------------------------*/
/* Netlink multicast bits for different types of messages */
-#define P80211_NL_MCAST_GRP_MLME BIT0 /* Local station messages */
-#define P80211_NL_MCAST_GRP_SNIFF BIT1 /* Sniffer messages */
-#define P80211_NL_MCAST_GRP_DIST BIT2 /* Distribution system messages */
+#define P80211_NL_MCAST_GRP_MLME BIT(0) /* Local station messages */
+#define P80211_NL_MCAST_GRP_SNIFF BIT(1) /* Sniffer messages */
+#define P80211_NL_MCAST_GRP_DIST BIT(2) /* Distribution system messages */
/*================================================================*/
/* Types */