diff options
Diffstat (limited to 'drivers/net/ixgbevf/ixgbevf_main.c')
| -rw-r--r-- | drivers/net/ixgbevf/ixgbevf_main.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c index 6ced5efc0e0..65cb133a6a1 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,  	struct ixgbevf_tx_buffer *tx_buffer_info;  	unsigned int len;  	unsigned int total = skb->len; -	unsigned int offset = 0, size, count = 0, i; +	unsigned int offset = 0, size, count = 0;  	unsigned int nr_frags = skb_shinfo(skb)->nr_frags;  	unsigned int f; +	int i;  	i = tx_ring->next_to_use;  |