Commit 23cdf875 authored by David S. Miller's avatar David S. Miller

act_ctinfo: Don't use BIT() in UAPI headers.

Use _BITUL() instead.
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cfecf0d0
...@@ -27,8 +27,8 @@ enum { ...@@ -27,8 +27,8 @@ enum {
#define TCA_CTINFO_MAX (__TCA_CTINFO_MAX - 1) #define TCA_CTINFO_MAX (__TCA_CTINFO_MAX - 1)
enum { enum {
CTINFO_MODE_DSCP = BIT(0), CTINFO_MODE_DSCP = _BITUL(0),
CTINFO_MODE_CPMARK = BIT(1) CTINFO_MODE_CPMARK = _BITUL(1)
}; };
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment