linux/drivers/staging/rtl8188eu
Amitoj Kaur Chawla f79dc1679a staging: rtl8188eu: Remove unnecessary variables
Remove unnecessary variable that can be replaced with a single line
of code.

The semantic patch used to find this is:

// <smpl>
@@
expression ret;
@@
- if (ret) return ret;
- return 0;
+ return ret;

@@
local idexpression ret;
expression e;
@@
- ret = e;
- return ret;
+ return e;

@@
type T;
identifier i;
expression E;
@@
- T i = E;
 ... when != i

@@
type T;
identifier i;
@@
- T i;
 ... when != i
// </smpl>

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-10-27 17:00:47 +09:00
..
core rtl8188eu : BIT() macro cleanup 2015-10-24 19:25:13 -07:00
hal staging: rtl8188eu: Remove unnecessary variables 2015-10-27 17:00:47 +09:00
include rtl8188eu : BIT() macro cleanup 2015-10-24 19:25:13 -07:00
os_dep staging: r8188eu: Add _enter_critical_mutex() error handling 2015-10-17 20:56:10 -07:00
Kconfig staging: rtl8188eu: Fix build error when CFG80211 is not selected 2015-09-29 04:27:22 +02:00
Makefile staging: rtl8188eu: Introduce monitor interface for IEEE 802.11 frames 2015-09-18 19:53:50 -07:00
TODO