Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0515b0c authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

net: socionext: remove redundant pointer ndev



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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent dfbd0749
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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 {