projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfecf0d
)
act_ctinfo: Don't use BIT() in UAPI headers.
author
David S. Miller
<davem@davemloft.net>
Wed, 19 Jun 2019 14:12:58 +0000
(10:12 -0400)
committer
David 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
patch
|
blob
|
history
diff --git
a/include/uapi/linux/tc_act/tc_ctinfo.h
b/include/uapi/linux/tc_act/tc_ctinfo.h
index da803e05a89bd8c286deceb96c78e17e3911b89b..32337304fbe5809bb0f0f4b1f56604df02f1c117 100644
(file)
--- 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