aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbevf
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgbevf')
-rw-r--r--drivers/net/ixgbevf/ixgbevf_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c
index 6ced5efc0e07..65cb133a6a1f 100644
--- a/drivers/net/ixgbevf/ixgbevf_main.c
+++ b/drivers/net/ixgbevf/ixgbevf_main.c
@@ -2921,9 +2921,10 @@ static int ixgbevf_tx_map(struct ixgbevf_adapter *adapter,
2921 struct ixgbevf_tx_buffer *tx_buffer_info; 2921 struct ixgbevf_tx_buffer *tx_buffer_info;
2922 unsigned int len; 2922 unsigned int len;
2923 unsigned int total = skb->len; 2923 unsigned int total = skb->len;
2924 unsigned int offset = 0, size, count = 0, i; 2924 unsigned int offset = 0, size, count = 0;
2925 unsigned int nr_frags = skb_shinfo(skb)->nr_frags; 2925 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
2926 unsigned int f; 2926 unsigned int f;
2927 int i;
2927 2928
2928 i = tx_ring->next_to_use; 2929 i = tx_ring->next_to_use;
2929 2930