diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/bridge/br_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c index 0ee79a726d91..255c00f60ce7 100644 --- a/net/bridge/br_input.c +++ b/net/bridge/br_input.c | |||
@@ -109,7 +109,7 @@ static inline int is_link_local(const unsigned char *dest) | |||
109 | { | 109 | { |
110 | __be16 *a = (__be16 *)dest; | 110 | __be16 *a = (__be16 *)dest; |
111 | static const __be16 *b = (const __be16 *)br_group_address; | 111 | static const __be16 *b = (const __be16 *)br_group_address; |
112 | static const __be16 m = __constant_cpu_to_be16(0xfff0); | 112 | static const __be16 m = cpu_to_be16(0xfff0); |
113 | 113 | ||
114 | return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | ((a[2] ^ b[2]) & m)) == 0; | 114 | return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | ((a[2] ^ b[2]) & m)) == 0; |
115 | } | 115 | } |