diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2007-03-07 00:19:05 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:23:57 -0400 |
commit | 1c9e8ef7f731c2548414644e5bf540c38c85aff0 (patch) | |
tree | e72c4b96b3568ba18d9dfde96c6a6d586d0efca7 | |
parent | f576e24ffaf2c6b01af389e3bad3342681a8b84f (diff) |
[NET] IEEE80211: Use htons() where appropriate.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ieee80211/ieee80211_tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee80211/ieee80211_tx.c b/net/ieee80211/ieee80211_tx.c index 0292d6348e12..3fca4345ebe5 100644 --- a/net/ieee80211/ieee80211_tx.c +++ b/net/ieee80211/ieee80211_tx.c | |||
@@ -225,7 +225,7 @@ static int ieee80211_classify(struct sk_buff *skb) | |||
225 | struct iphdr *ip; | 225 | struct iphdr *ip; |
226 | 226 | ||
227 | eth = (struct ethhdr *)skb->data; | 227 | eth = (struct ethhdr *)skb->data; |
228 | if (eth->h_proto != __constant_htons(ETH_P_IP)) | 228 | if (eth->h_proto != htons(ETH_P_IP)) |
229 | return 0; | 229 | return 0; |
230 | 230 | ||
231 | ip = skb->nh.iph; | 231 | ip = skb->nh.iph; |