act_ctinfo: Don't use BIT() in UAPI headers.
authorDavid S. Miller <davem@davemloft.net>
Wed, 19 Jun 2019 14:12:58 +0000 (10:12 -0400)
committerDavid S. Miller <davem@davemloft.net>
Wed, 19 Jun 2019 14:12:58 +0000 (10:12 -0400)
Use _BITUL() instead.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/tc_act/tc_ctinfo.h

index da803e0..3233730 100644 (file)
@@ -27,8 +27,8 @@ enum {
 #define TCA_CTINFO_MAX (__TCA_CTINFO_MAX - 1)
 
 enum {
-       CTINFO_MODE_DSCP        = BIT(0),
-       CTINFO_MODE_CPMARK      = BIT(1)
+       CTINFO_MODE_DSCP        = _BITUL(0),
+       CTINFO_MODE_CPMARK      = _BITUL(1)
 };
 
 #endif