Skip to content

Commit 23cdf87

Browse files
committed
act_ctinfo: Don't use BIT() in UAPI headers.
Use _BITUL() instead. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent cfecf0d commit 23cdf87

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/uapi/linux/tc_act/tc_ctinfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ enum {
2727
#define TCA_CTINFO_MAX (__TCA_CTINFO_MAX - 1)
2828

2929
enum {
30-
CTINFO_MODE_DSCP = BIT(0),
31-
CTINFO_MODE_CPMARK = BIT(1)
30+
CTINFO_MODE_DSCP = _BITUL(0),
31+
CTINFO_MODE_CPMARK = _BITUL(1)
3232
};
3333

3434
#endif

0 commit comments

Comments
 (0)