- Update to 2.6.25-rc3.
[linux-flexiantxendom0-3.2.10.git] / net / bridge / br_input.c
index 0ee79a7..255c00f 100644 (file)
@@ -109,7 +109,7 @@ static inline int is_link_local(const unsigned char *dest)
 {
        __be16 *a = (__be16 *)dest;
        static const __be16 *b = (const __be16 *)br_group_address;
-       static const __be16 m = __constant_cpu_to_be16(0xfff0);
+       static const __be16 m = cpu_to_be16(0xfff0);
 
        return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | ((a[2] ^ b[2]) & m)) == 0;
 }