net: socionext: remove redundant pointer ndev
authorColin Ian King <colin.king@canonical.com>
Thu, 5 Jul 2018 09:26:13 +0000 (10:26 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 Jul 2018 10:30:26 +0000 (19:30 +0900)
Pointer ndev is being assigned but is never used hence it is
redundant and can be removed.

Cleans up clang warning:
warning: variable 'ndev' set but not used [-Wunused-but-set-variable]

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

index e080d3e..01589b6 100644 (file)
@@ -780,11 +780,9 @@ static int netsec_process_rx(struct netsec_priv *priv, int budget)
 static int netsec_napi_poll(struct napi_struct *napi, int budget)
 {
        struct netsec_priv *priv;
-       struct net_device *ndev;
        int tx, rx, done, todo;
 
        priv = container_of(napi, struct netsec_priv, napi);
-       ndev = priv->ndev;
 
        todo = budget;
        do {