diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-07-08 10:32:09 -0400 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-08-23 08:20:19 -0400 |
commit | 8de47de5757bd5f64a823185e544210d95fd2088 (patch) | |
tree | 0cd51b5150434b80e12c65f2d04139a102b4106c /net/batman-adv/packet.h | |
parent | 74ee3634dcd1f11624192f72f458bcb5a04e4822 (diff) |
batman-adv: Use BIT(x) macro to calculate bit positions
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/packet.h')
-rw-r--r-- | net/batman-adv/packet.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/net/batman-adv/packet.h b/net/batman-adv/packet.h index 65d66e4ee757..eb4593413b73 100644 --- a/net/batman-adv/packet.h +++ b/net/batman-adv/packet.h | |||
@@ -37,10 +37,10 @@ enum batadv_packettype { | |||
37 | #define BATADV_COMPAT_VERSION 14 | 37 | #define BATADV_COMPAT_VERSION 14 |
38 | 38 | ||
39 | enum batadv_iv_flags { | 39 | enum batadv_iv_flags { |
40 | BATADV_NOT_BEST_NEXT_HOP = 1 << 3, | 40 | BATADV_NOT_BEST_NEXT_HOP = BIT(3), |
41 | BATADV_PRIMARIES_FIRST_HOP = 1 << 4, | 41 | BATADV_PRIMARIES_FIRST_HOP = BIT(4), |
42 | BATADV_VIS_SERVER = 1 << 5, | 42 | BATADV_VIS_SERVER = BIT(5), |
43 | BATADV_DIRECTLINK = 1 << 6, | 43 | BATADV_DIRECTLINK = BIT(6), |
44 | }; | 44 | }; |
45 | 45 | ||
46 | /* ICMP message types */ | 46 | /* ICMP message types */ |
@@ -60,8 +60,8 @@ enum batadv_vis_packettype { | |||
60 | 60 | ||
61 | /* fragmentation defines */ | 61 | /* fragmentation defines */ |
62 | enum batadv_unicast_frag_flags { | 62 | enum batadv_unicast_frag_flags { |
63 | BATADV_UNI_FRAG_HEAD = 1 << 0, | 63 | BATADV_UNI_FRAG_HEAD = BIT(0), |
64 | BATADV_UNI_FRAG_LARGETAIL = 1 << 1, | 64 | BATADV_UNI_FRAG_LARGETAIL = BIT(1), |
65 | }; | 65 | }; |
66 | 66 | ||
67 | /* TT_QUERY subtypes */ | 67 | /* TT_QUERY subtypes */ |
@@ -74,20 +74,20 @@ enum batadv_tt_query_packettype { | |||
74 | 74 | ||
75 | /* TT_QUERY flags */ | 75 | /* TT_QUERY flags */ |
76 | enum batadv_tt_query_flags { | 76 | enum batadv_tt_query_flags { |
77 | BATADV_TT_FULL_TABLE = 1 << 2, | 77 | BATADV_TT_FULL_TABLE = BIT(2), |
78 | }; | 78 | }; |
79 | 79 | ||
80 | /* BATADV_TT_CLIENT flags. | 80 | /* BATADV_TT_CLIENT flags. |
81 | * Flags from 1 to 1 << 7 are sent on the wire, while flags from 1 << 8 to | 81 | * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to |
82 | * 1 << 15 are used for local computation only | 82 | * BIT(15) are used for local computation only |
83 | */ | 83 | */ |
84 | enum batadv_tt_client_flags { | 84 | enum batadv_tt_client_flags { |
85 | BATADV_TT_CLIENT_DEL = 1 << 0, | 85 | BATADV_TT_CLIENT_DEL = BIT(0), |
86 | BATADV_TT_CLIENT_ROAM = 1 << 1, | 86 | BATADV_TT_CLIENT_ROAM = BIT(1), |
87 | BATADV_TT_CLIENT_WIFI = 1 << 2, | 87 | BATADV_TT_CLIENT_WIFI = BIT(2), |
88 | BATADV_TT_CLIENT_NOPURGE = 1 << 8, | 88 | BATADV_TT_CLIENT_NOPURGE = BIT(8), |
89 | BATADV_TT_CLIENT_NEW = 1 << 9, | 89 | BATADV_TT_CLIENT_NEW = BIT(9), |
90 | BATADV_TT_CLIENT_PENDING = 1 << 10, | 90 | BATADV_TT_CLIENT_PENDING = BIT(10), |
91 | }; | 91 | }; |
92 | 92 | ||
93 | /* claim frame types for the bridge loop avoidance */ | 93 | /* claim frame types for the bridge loop avoidance */ |