aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tg3.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r--drivers/net/tg3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index eafabb253f08..6f5d3a38c582 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -3851,11 +3851,11 @@ static int tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
3851 skb->h.th->check = 0; 3851 skb->h.th->check = 0;
3852 3852
3853 } 3853 }
3854 else if (skb->ip_summed == CHECKSUM_HW) 3854 else if (skb->ip_summed == CHECKSUM_PARTIAL)
3855 base_flags |= TXD_FLAG_TCPUDP_CSUM; 3855 base_flags |= TXD_FLAG_TCPUDP_CSUM;
3856#else 3856#else
3857 mss = 0; 3857 mss = 0;
3858 if (skb->ip_summed == CHECKSUM_HW) 3858 if (skb->ip_summed == CHECKSUM_PARTIAL)
3859 base_flags |= TXD_FLAG_TCPUDP_CSUM; 3859 base_flags |= TXD_FLAG_TCPUDP_CSUM;
3860#endif 3860#endif
3861#if TG3_VLAN_TAG_USED 3861#if TG3_VLAN_TAG_USED
@@ -3981,7 +3981,7 @@ static int tg3_start_xmit_dma_bug(struct sk_buff *skb, struct net_device *dev)
3981 3981
3982 entry = tp->tx_prod; 3982 entry = tp->tx_prod;
3983 base_flags = 0; 3983 base_flags = 0;
3984 if (skb->ip_summed == CHECKSUM_HW) 3984 if (skb->ip_summed == CHECKSUM_PARTIAL)
3985 base_flags |= TXD_FLAG_TCPUDP_CSUM; 3985 base_flags |= TXD_FLAG_TCPUDP_CSUM;
3986#if TG3_TSO_SUPPORT != 0 3986#if TG3_TSO_SUPPORT != 0
3987 mss = 0; 3987 mss = 0;