diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-28 21:00:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-09-28 21:00:55 -0400 |
commit | a144ea4b7a13087081ab5402fa9ad0bcfd249e67 (patch) | |
tree | a0452a546c231d85a89e8920c26e5dec4595ba54 /drivers/isdn | |
parent | 6d85c10abe840e98cbac673202fe7cc9ada2180c (diff) |
[IPV4]: annotate struct in_ifaddr
ifa_local, ifa_address, ifa_mask, ifa_broadcast and ifa_anycast are
net-endian. Annotated them and variables that are inferred to be
net-endian.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/i4l/isdn_net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/i4l/isdn_net.c b/drivers/isdn/i4l/isdn_net.c index 43da8ae1b2ad..1f8d6ae66b41 100644 --- a/drivers/isdn/i4l/isdn_net.c +++ b/drivers/isdn/i4l/isdn_net.c | |||
@@ -1614,8 +1614,8 @@ isdn_net_ciscohdlck_slarp_send_reply(isdn_net_local *lp) | |||
1614 | struct sk_buff *skb; | 1614 | struct sk_buff *skb; |
1615 | unsigned char *p; | 1615 | unsigned char *p; |
1616 | struct in_device *in_dev = NULL; | 1616 | struct in_device *in_dev = NULL; |
1617 | u32 addr = 0; /* local ipv4 address */ | 1617 | __be32 addr = 0; /* local ipv4 address */ |
1618 | u32 mask = 0; /* local netmask */ | 1618 | __be32 mask = 0; /* local netmask */ |
1619 | 1619 | ||
1620 | if ((in_dev = lp->netdev->dev.ip_ptr) != NULL) { | 1620 | if ((in_dev = lp->netdev->dev.ip_ptr) != NULL) { |
1621 | /* take primary(first) address of interface */ | 1621 | /* take primary(first) address of interface */ |