diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2007-03-25 23:13:04 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:23:55 -0400 |
commit | 724800d61b8bc574a364707b6a6c6a6252e8cdb4 (patch) | |
tree | 5da0b6eeaaa80e1fe550be7708a01ca466e212b9 /net/core/netpoll.c | |
parent | aca3192cc60d2bf193c2252e45563c32e3117289 (diff) |
[NET] CORE: Use htons() where appropriate.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/netpoll.c')
-rw-r--r-- | net/core/netpoll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/netpoll.c b/net/core/netpoll.c index 4581ece48bb2..32a9f80b5f19 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c | |||
@@ -443,7 +443,7 @@ int __netpoll_rx(struct sk_buff *skb) | |||
443 | goto out; | 443 | goto out; |
444 | 444 | ||
445 | /* check if netpoll clients need ARP */ | 445 | /* check if netpoll clients need ARP */ |
446 | if (skb->protocol == __constant_htons(ETH_P_ARP) && | 446 | if (skb->protocol == htons(ETH_P_ARP) && |
447 | atomic_read(&trapped)) { | 447 | atomic_read(&trapped)) { |
448 | skb_queue_tail(&npi->arp_tx, skb); | 448 | skb_queue_tail(&npi->arp_tx, skb); |
449 | return 1; | 449 | return 1; |