Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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