igc: Remove unused argument from igc_tx_cmd_type()
The 'skb' argument from igc_tx_cmd_type() is not used so remove it. Signed-off-by: Andre Guedes <andre.guedes@intel.com> Signed-off-by: Vedang Patel <vedang.patel@intel.com> Signed-off-by: Jithu Joseph <jithu.joseph@intel.com> Reviewed-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Tested-by: Dvora Fuxbrumer <dvorax.fuxbrumer@linux.intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
9d0365448b
commit
2f019ebd53
|
@ -1029,7 +1029,7 @@ static inline int igc_maybe_stop_tx(struct igc_ring *tx_ring, const u16 size)
|
|||
((u32)((_input) & (_flag)) * ((_result) / (_flag))) : \
|
||||
((u32)((_input) & (_flag)) / ((_flag) / (_result))))
|
||||
|
||||
static u32 igc_tx_cmd_type(struct sk_buff *skb, u32 tx_flags)
|
||||
static u32 igc_tx_cmd_type(u32 tx_flags)
|
||||
{
|
||||
/* set type for advanced descriptor with frame checksum insertion */
|
||||
u32 cmd_type = IGC_ADVTXD_DTYP_DATA |
|
||||
|
@ -1078,7 +1078,7 @@ static int igc_tx_map(struct igc_ring *tx_ring,
|
|||
u16 i = tx_ring->next_to_use;
|
||||
unsigned int data_len, size;
|
||||
dma_addr_t dma;
|
||||
u32 cmd_type = igc_tx_cmd_type(skb, tx_flags);
|
||||
u32 cmd_type = igc_tx_cmd_type(tx_flags);
|
||||
|
||||
tx_desc = IGC_TX_DESC(tx_ring, i);
|
||||
|
||||
|
|
Loading…
Reference in New Issue