From 4b1443a248c5073d0e11e1f26bf7d8522d193b63 Mon Sep 17 00:00:00 2001 From: Amitoj Kaur Chawla Date: Thu, 15 Oct 2015 13:47:00 +0530 Subject: [PATCH] staging: vt6656: Remove useless initialisation Remove intialisation of a variable that is immediately reassigned. The semantic patch used to find this is: // @@ type T; identifier x; constant C; expression e; @@ T x - = C ; x = e; // Signed-off-by: Amitoj Kaur Chawla Signed-off-by: Greg Kroah-Hartman --- drivers/staging/vt6656/card.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vt6656/card.c b/drivers/staging/vt6656/card.c index a215563de07d..167dca9d243a 100644 --- a/drivers/staging/vt6656/card.c +++ b/drivers/staging/vt6656/card.c @@ -508,7 +508,7 @@ u8 vnt_get_pkt_type(struct vnt_private *priv) u64 vnt_get_tsf_offset(u8 rx_rate, u64 tsf1, u64 tsf2) { u64 tsf_offset = 0; - u16 rx_bcn_offset = 0; + u16 rx_bcn_offset; rx_bcn_offset = cwRXBCNTSFOff[rx_rate % MAX_RATE]; -- 2.34.1