linux/drivers/staging/rtl8188eu
Aya Mahfouz 07add2d38d staging: rtl8188eu: remove extra parentheses around right bit shift operations
Removes extra parentheses around bitwise right shift operations.
The cases handled here are when resultant values are assigned to
variables. The issue was detected and resolved using the following
coccinelle script:

@@
expression e, e1;
constant c;
@@

e =
-(e1
+e1
>>
-c);
+c;

@@
identifier i;
constant c;
type t;
expression e;
@@

t i =
-(e
+e
>>
-c);
+c;

@@
expression e, e1;
identifier f;
constant c;
@@

e1 = f(...,
-(e
+e
>>
-c)
+c
,...);

Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-03-06 15:22:42 -08:00
..
core staging: rtl8188eu: remove extra parentheses around right bit shift operations 2015-03-06 15:22:42 -08:00
hal staging: rtl8188eu: remove extra parentheses around right bit shift operations 2015-03-06 15:22:42 -08:00
include Staging: rtl8188eu: Remove unused macros 2015-02-26 12:55:17 -08:00
os_dep staging: rtl8188eu: Remove memset. 2015-03-01 16:22:53 -08:00
Kconfig
Makefile staging: rtl8188eu: Remove odm_debug.c 2014-09-23 23:47:12 -07:00
TODO