net: neterion: vxge: remove set but not used variables 'max_frags' and 'txdl_priv'

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/net/ethernet/neterion/vxge/vxge-traffic.c:1698:35:
 warning: variable 'txdl_priv' set but not used [-Wunused-but-set-variable]
drivers/net/ethernet/neterion/vxge/vxge-traffic.c:1699:6:
 warning: variable 'max_frags' set but not used [-Wunused-but-set-variable]

It never used since introduction in
commit 113241321d ("Neterion: New driver: Traffic & alarm handler")

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
YueHaibing 2018-11-28 20:24:41 +08:00 committed by David S. Miller
parent 5827541067
commit 9cc549e4a7
1 changed files with 0 additions and 7 deletions

View File

@ -1695,17 +1695,10 @@ exit:
*/
void vxge_hw_fifo_txdl_free(struct __vxge_hw_fifo *fifo, void *txdlh)
{
struct __vxge_hw_fifo_txdl_priv *txdl_priv;
u32 max_frags;
struct __vxge_hw_channel *channel;
channel = &fifo->channel;
txdl_priv = __vxge_hw_fifo_txdl_priv(fifo,
(struct vxge_hw_fifo_txd *)txdlh);
max_frags = fifo->config->max_frags;
vxge_hw_channel_dtr_free(channel, txdlh);
}