vlan: Use eth_proto_is_802_3
[deliverable/linux.git] / include / linux / if_vlan.h
index 920e4457ce6eab1541a9322595fe2894559ce16f..b9ab677c0c0ad8cba177409e9ad87c1ed7cc43fc 100644 (file)
@@ -539,7 +539,7 @@ static inline void vlan_set_encap_proto(struct sk_buff *skb,
         */
 
        proto = vhdr->h_vlan_encapsulated_proto;
-       if (ntohs(proto) >= ETH_P_802_3_MIN) {
+       if (eth_proto_is_802_3(proto)) {
                skb->protocol = proto;
                return;
        }
This page took 0.031019 seconds and 5 git commands to generate.