aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee80211
diff options
context:
space:
mode:
authorYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>2007-03-07 14:19:05 +0900
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-25 22:23:57 -0700
commit1c9e8ef7f731c2548414644e5bf540c38c85aff0 (patch)
treee72c4b96b3568ba18d9dfde96c6a6d586d0efca7 /net/ieee80211
parent[NET] ETHERNET: Use htons() where appropriate. (diff)
downloadlinux-dev-1c9e8ef7f731c2548414644e5bf540c38c85aff0.tar.xz
linux-dev-1c9e8ef7f731c2548414644e5bf540c38c85aff0.zip
[NET] IEEE80211: 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/ieee80211')
-rw-r--r--net/ieee80211/ieee80211_tx.c2
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)
struct iphdr *ip;
eth = (struct ethhdr *)skb->data;
- if (eth->h_proto != __constant_htons(ETH_P_IP))
+ if (eth->h_proto != htons(ETH_P_IP))
return 0;
ip = skb->nh.iph;