summaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>2007-12-12 03:51:03 +0900
committerDavid S. Miller <davem@davemloft.net>2008-01-28 14:58:00 -0800
commit91c5ec3ed184b7ca08314457b6e202e3d2cfb65f (patch)
treee01d0cf72ad058bcdfa377de4650b8d0375ebe26 /net/bridge
parent6179983ad30c43313e153b35af52bd9ebd7745c3 (diff)
downloadop-kernel-dev-91c5ec3ed184b7ca08314457b6e202e3d2cfb65f.zip
op-kernel-dev-91c5ec3ed184b7ca08314457b6e202e3d2cfb65f.tar.gz
[BRIDGE]: Use cpu_to_be16() where appropriate.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/br_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c
index 0ee79a7..255c00f 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)
{
__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;
}
OpenPOWER on IntegriCloud