]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
net: macb: remove redundant assignment to variable work_done
authorColin Ian King <colin.king@canonical.com>
Tue, 31 Oct 2017 14:23:24 +0000 (14:23 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 1 Nov 2017 12:25:59 +0000 (21:25 +0900)
Variable work_done is set to zero and this value is never read, instead
it is set to another value a few statements later.  Remove the redundant
assignment. Cleans up clang warning:

drivers/net/ethernet/cadence/macb_main.c:1221:2: warning: Value stored
to 'work_done' is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Tested-by: Alexander Dahl <ada@thorsis.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cadence/macb_main.c

index 6df2cad61647a6d7067df5c30371fbd6eda17923..5dafcde67e459f6a769ae20c8c25a7192cc0b978 100644 (file)
@@ -1218,8 +1218,6 @@ static int macb_poll(struct napi_struct *napi, int budget)
        status = macb_readl(bp, RSR);
        macb_writel(bp, RSR, status);
 
-       work_done = 0;
-
        netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
                    (unsigned long)status, budget);