Skip to content
Snippets Groups Projects
Commit 1c9e8ef7 authored by YOSHIFUJI Hideaki's avatar YOSHIFUJI Hideaki Committed by David S. Miller
Browse files

[NET] IEEE80211: Use htons() where appropriate.

parent f576e24f
No related merge requests found
...@@ -225,7 +225,7 @@ static int ieee80211_classify(struct sk_buff *skb) ...@@ -225,7 +225,7 @@ static int ieee80211_classify(struct sk_buff *skb)
struct iphdr *ip; struct iphdr *ip;
eth = (struct ethhdr *)skb->data; eth = (struct ethhdr *)skb->data;
if (eth->h_proto != __constant_htons(ETH_P_IP)) if (eth->h_proto != htons(ETH_P_IP))
return 0; return 0;
ip = skb->nh.iph; ip = skb->nh.iph;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment