Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c1758012 authored by Jesse Gross's avatar Jesse Gross Committed by David S. Miller
Browse files

igb: Fix unused variable warning.



Commit eab6d18d "vlan: Don't check for vlan group before
vlan_tx_tag_present" removed the need for the adapter variable
in igb_xmit_frame_ring_adv().  This removes the variable as well
to avoid the compiler warning.

Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarJesse Gross <jesse@nicira.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ce45b873
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -4107,7 +4107,6 @@ static inline int igb_maybe_stop_tx(struct igb_ring *tx_ring, int size)
netdev_tx_t igb_xmit_frame_ring_adv(struct sk_buff *skb,
				    struct igb_ring *tx_ring)
{
	struct igb_adapter *adapter = netdev_priv(tx_ring->netdev);
	int tso = 0, count;
	u32 tx_flags = 0;
	u16 first;