net: ethernet: mlx4: Avoid assigning a value to ring_cons but not used it anymore...
authorLuo Jiaxing <luojiaxing@huawei.com>
Sat, 12 Sep 2020 08:08:15 +0000 (16:08 +0800)
committerDavid S. Miller <davem@davemloft.net>
Sun, 13 Sep 2020 01:21:56 +0000 (18:21 -0700)
commite5e252ba21d243689a8e8bf2af5bf5579dabfea7
tree684ca65742253f31a3b8ca188a09f9f5e6e33053
parent1623ad8ec04c771a54975fb84b22bc21c2dbcac1
net: ethernet: mlx4: Avoid assigning a value to ring_cons but not used it anymore in mlx4_en_xmit()

We found a set but not used variable 'ring_cons' in mlx4_en_xmit(), it will
cause a warning when build the kernel. And after checking the commit record
of this function, we found that it was introduced by a previous patch.

So, We delete this redundant assignment code.

Fixes: 488a9b48e398 ("net/mlx4_en: Wake TX queues only when there's enough room")

Signed-off-by: Luo Jiaxing <luojiaxing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx4/en_tx.c