]> git.baikalelectronics.ru Git - kernel.git/commit
staging: rtl8723au: core: rtw_recv: Remove useless initialisation
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Thu, 15 Oct 2015 08:07:09 +0000 (13:37 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 05:10:37 +0000 (22:10 -0700)
commit7c916b04d60dd2a63d5949e4f93a6a4dc04f4453
tree3d24d2a48f0a9c5a5bd1b2f6238670a79a8258a7
parent40e8ed12bc21d01fcaa22e8ade2be4e8db3bc9bd
staging: rtl8723au: core: rtw_recv: Remove useless initialisation

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/rtl8723au/core/rtw_recv.c