From: YOSHIFUJI Hideaki Date: Wed, 7 Mar 2007 05:19:05 +0000 (+0900) Subject: [NET] IEEE80211: Use htons() where appropriate. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=1c9e8ef7f731c2548414644e5bf540c38c85aff0;p=deliverable%2Flinux.git [NET] IEEE80211: Use htons() where appropriate. Signed-off-by: YOSHIFUJI Hideaki Signed-off-by: David S. Miller --- 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;