staging: lustre: lnet: remove BIT macro from lnetctl.h
authorJames Simmons <jsimmons@infradead.org>
Sun, 20 Aug 2017 02:26:33 +0000 (22:26 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 23 Aug 2017 01:36:50 +0000 (18:36 -0700)
Now that lnetctl.h is a UAPI header the BIT macro has to be
removed.

Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/include/uapi/linux/lnet/lnetctl.h

index 65b2bf8..f7ffc53 100644 (file)
@@ -32,10 +32,10 @@ enum {
        LNET_CTL_DELAY_LIST,
 };
 
-#define LNET_ACK_BIT           BIT(0)
-#define LNET_PUT_BIT           BIT(1)
-#define LNET_GET_BIT           BIT(2)
-#define LNET_REPLY_BIT         BIT(3)
+#define LNET_ACK_BIT           (1 << 0)
+#define LNET_PUT_BIT           (1 << 1)
+#define LNET_GET_BIT           (1 << 2)
+#define LNET_REPLY_BIT         (1 << 3)
 
 /** ioctl parameter for LNet fault simulation */
 struct lnet_fault_attr {