aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/tg3.c8
-rw-r--r--drivers/net/tg3.h1
2 files changed, 2 insertions, 7 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index 46352da36a8..c4f193eba82 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -6022,8 +6022,7 @@ static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
6022 tg3_4g_overflow_test(mapping, len)) 6022 tg3_4g_overflow_test(mapping, len))
6023 would_hit_hwbug = 1; 6023 would_hit_hwbug = 1;
6024 6024
6025 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) && 6025 if (tg3_40bit_overflow_test(tp, mapping, len))
6026 tg3_40bit_overflow_test(tp, mapping, len))
6027 would_hit_hwbug = 1; 6026 would_hit_hwbug = 1;
6028 6027
6029 if (tg3_flag(tp, 5701_DMA_BUG)) 6028 if (tg3_flag(tp, 5701_DMA_BUG))
@@ -6060,8 +6059,7 @@ static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
6060 tg3_4g_overflow_test(mapping, len)) 6059 tg3_4g_overflow_test(mapping, len))
6061 would_hit_hwbug = 1; 6060 would_hit_hwbug = 1;
6062 6061
6063 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) && 6062 if (tg3_40bit_overflow_test(tp, mapping, len))
6064 tg3_40bit_overflow_test(tp, mapping, len))
6065 would_hit_hwbug = 1; 6063 would_hit_hwbug = 1;
6066 6064
6067 if (tg3_flag(tp, HW_TSO_1) || 6065 if (tg3_flag(tp, HW_TSO_1) ||
@@ -13712,8 +13710,6 @@ static int __devinit tg3_get_invariants(struct tg3 *tp)
13712 13710
13713 if (tg3_flag(tp, 5755_PLUS)) 13711 if (tg3_flag(tp, 5755_PLUS))
13714 tg3_flag_set(tp, SHORT_DMA_BUG); 13712 tg3_flag_set(tp, SHORT_DMA_BUG);
13715 else
13716 tg3_flag_set(tp, 40BIT_DMA_LIMIT_BUG);
13717 13713
13718 if (tg3_flag(tp, 5717_PLUS)) 13714 if (tg3_flag(tp, 5717_PLUS))
13719 tg3_flag_set(tp, LRG_PROD_RING_CAP); 13715 tg3_flag_set(tp, LRG_PROD_RING_CAP);
diff --git a/drivers/net/tg3.h b/drivers/net/tg3.h
index 3c113c1e9d3..4f5dbf6adfe 100644
--- a/drivers/net/tg3.h
+++ b/drivers/net/tg3.h
@@ -2897,7 +2897,6 @@ enum TG3_FLAGS {
2897 TG3_FLAG_ENABLE_RSS, 2897 TG3_FLAG_ENABLE_RSS,
2898 TG3_FLAG_ENABLE_TSS, 2898 TG3_FLAG_ENABLE_TSS,
2899 TG3_FLAG_4G_DMA_BNDRY_BUG, 2899 TG3_FLAG_4G_DMA_BNDRY_BUG,
2900 TG3_FLAG_40BIT_DMA_LIMIT_BUG,
2901 TG3_FLAG_SHORT_DMA_BUG, 2900 TG3_FLAG_SHORT_DMA_BUG,
2902 TG3_FLAG_USE_JUMBO_BDFLAG, 2901 TG3_FLAG_USE_JUMBO_BDFLAG,
2903 TG3_FLAG_L1PLLPD_EN, 2902 TG3_FLAG_L1PLLPD_EN,