aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2019-06-19 10:12:58 -0400
committerDavid S. Miller <davem@davemloft.net>2019-06-19 10:12:58 -0400
commit23cdf8752b26d4edbd60a6293bca492d83192d4d (patch)
tree9168108ce62f1de7426f26149662a0ba7f93c69c /include
parentMerge branch 'mlxsw-Implement-flower-ingress-device-matching-offload' (diff)
downloadlinux-dev-23cdf8752b26d4edbd60a6293bca492d83192d4d.tar.xz
linux-dev-23cdf8752b26d4edbd60a6293bca492d83192d4d.zip
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>
Diffstat (limited to 'include')
-rw-r--r--include/uapi/linux/tc_act/tc_ctinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/tc_act/tc_ctinfo.h b/include/uapi/linux/tc_act/tc_ctinfo.h
index da803e05a89b..32337304fbe5 100644
--- a/include/uapi/linux/tc_act/tc_ctinfo.h
+++ b/include/uapi/linux/tc_act/tc_ctinfo.h
@@ -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