net: amd8111e: remove redundant assignment to 'tx_index'
authorColin Ian King <colin.king@canonical.com>
Thu, 1 Mar 2018 16:42:40 +0000 (16:42 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 4 Mar 2018 23:17:27 +0000 (18:17 -0500)
The variable tx_index is being initialized with a value that is never
read and re-assigned a little later, hence the initialization is redundant
and can be removed.

Cleans up clang warning:
drivers/net/ethernet/amd/amd8111e.c:652:6: warning: Value stored to
'tx_index' during its initialization is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amd/amd8111e.c

index 358f7ab..c99e3e8 100644 (file)
@@ -649,7 +649,7 @@ static void amd8111e_free_ring(struct amd8111e_priv *lp)
 static int amd8111e_tx(struct net_device *dev)
 {
        struct amd8111e_priv *lp = netdev_priv(dev);
-       int tx_index = lp->tx_complete_idx & TX_RING_DR_MOD_MASK;
+       int tx_index;
        int status;
        /* Complete all the transmit packet */
        while (lp->tx_complete_idx != lp->tx_idx){