linux/drivers/staging/rtl8192e
Aya Mahfouz 0c401c1dc9 staging: rtl8192e: remove extra parentheses around right bit shift operation
Removes extra parentheses around bitwise right shift operation.
The cases handled are  when the resultant value is assigned to
a variable or when a shift operation is carried out for a function
argument. The issues were 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
,...);

Some coding style issues were handled manually to avoid
checkpatch warnings and errors.

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
..
rtl8192e staging: rtl8192e: remove extra parentheses around right bit shift operation 2015-03-06 15:22:42 -08:00
dot11d.c staging: rtl8192e: fixed coding style issues 2014-08-30 13:54:03 -07:00
dot11d.h
Kconfig
license
Makefile
rtl819x_BA.h
rtl819x_BAProc.c drivers: staging: rtl8192e: Include "asm/unaligned.h" instead of "access_ok.h" in "rtl819x_BAProc.c" 2014-12-02 16:47:11 -08:00
rtl819x_HT.h
rtl819x_HTProc.c staging: rtl8192e: rewrite the right hand side of an assignment 2015-02-26 15:23:47 -08:00
rtl819x_Qos.h
rtl819x_TS.h
rtl819x_TSProc.c Staging: rtl8192e: Fix space before semicolon warning 2014-09-19 17:14:30 -07:00
rtllib_crypt_ccmp.c Staging: rtl8192e: Fix style warnings relating to printk(KERN_DEBUG 2014-09-19 17:11:06 -07:00
rtllib_crypt_tkip.c staging: rtl8192e: fixed coding style issues 2014-08-30 13:54:03 -07:00
rtllib_crypt_wep.c Staging: rtl8192e: Fix printk debug style warning 2014-09-19 17:14:30 -07:00
rtllib_crypt.c
rtllib_crypt.h
rtllib_debug.h
rtllib_endianfree.h
rtllib_module.c Staging: rtl8192e: Fixed unnecessary line continuation. 2015-02-07 17:25:43 +08:00
rtllib_rx.c staging: rtl8192e: rtllib_rx.c: Remove some unused functions 2015-01-17 14:13:31 -08:00
rtllib_softmac_wx.c staging: rtl8192e: replace memset(x,0,ETH_ALEN) by eth_zero_addr(x) 2015-03-06 09:54:34 -08:00
rtllib_softmac.c staging: rtl8192e: replace memset(x,0,ETH_ALEN) by eth_zero_addr(x) 2015-03-06 09:54:34 -08:00
rtllib_tx.c staging: rtl8192e: Remove unneeded void return 2014-10-02 11:56:43 -07:00
rtllib_wx.c Staging: rtl8192e: Fix line over 80 characters 2015-03-01 17:07:43 -08:00
rtllib.h staging, rtl8192e, LLVMLinux: Remove unused prototype 2014-10-29 16:33:05 -07:00
TODO