net: rename vlan_tx_* helpers since "tx" is misleading there
[deliverable/linux.git] / drivers / net / ethernet / chelsio / cxgb4vf / sge.c
index 4424277a7e4db789a89298a24dc32214ce5271e4..0545f0de1c52be282af53d6a5f03916f93ad7013 100644 (file)
@@ -1326,9 +1326,9 @@ int t4vf_eth_xmit(struct sk_buff *skb, struct net_device *dev)
         * If there's a VLAN tag present, add that to the list of things to
         * do in this Work Request.
         */
-       if (vlan_tx_tag_present(skb)) {
+       if (skb_vlan_tag_present(skb)) {
                txq->vlan_ins++;
-               cntrl |= TXPKT_VLAN_VLD | TXPKT_VLAN(vlan_tx_tag_get(skb));
+               cntrl |= TXPKT_VLAN_VLD | TXPKT_VLAN(skb_vlan_tag_get(skb));
        }
 
        /*
This page took 0.02559 seconds and 5 git commands to generate.