staging: rtl8712: rtl8712_recv: Remove useless intialisation
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Wed, 14 Oct 2015 20:59:55 +0000 (02:29 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 05:15:57 +0000 (22:15 -0700)
commita90391e4c11c453dfde739f94fac73fe94f1957a
tree6ac5d9540e78e0461a705ac06cca17d9b6978747
parent28aba5001300c46320bdc4eba26a8aebf4d83694
staging: rtl8712: rtl8712_recv: Remove useless intialisation

Remove intialisation of a variable that is immediately reassigned.

The semantic patch used to find this is:

// <smpl>
@@
type T;
identifier x;
constant C;
expression e;
@@

T x
- = C
 ;
x = e;
// </smpl>

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl8712_recv.c