[PATCH][next] xen-netfront: remove redundant assignment to variable 'act'

From: Colin King
Date: Thu Jul 02 2020 - 10:22:37 EST


From: Colin Ian King <colin.king@xxxxxxxxxxxxx>

The variable act is being initialized with a value that is
never read and it is being updated later with a new value. The
initialization is redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
---
drivers/net/xen-netfront.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index 468f3f6f1425..860a0cce346d 100644
--- a/drivers/net/xen-netfront.c
+++ b/drivers/net/xen-netfront.c
@@ -856,7 +856,7 @@ static u32 xennet_run_xdp(struct netfront_queue *queue, struct page *pdata,
{
struct xdp_frame *xdpf;
u32 len = rx->status;
- u32 act = XDP_PASS;
+ u32 act;
int err;

xdp->data_hard_start = page_address(pdata);
--
2.27.0