linux-kernel-test/drivers/staging/rtl8188eu
Aya Mahfouz 945f018561 staging: rtl8188eu: rewrite the right hand side of an assignment
This patch rewrites the right hand side of an assignment for
expressions of the form:
a = (a <op> b);
to be:
a <op>= b;
where <op> = << | >>.

This issue was detected and resolved using the following
coccinelle script:

@@
identifier i;
expression e;
@@

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

@@
identifier i;
expression e;
@@

-i = (i << e);
+i <<= e;

Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-02-26 15:24:15 -08:00
..
core Staging: rtl8188eu: Use put_unaligned_le16 2015-02-26 12:34:17 -08:00
hal staging: rtl8188eu: rewrite the right hand side of an assignment 2015-02-26 15:24:15 -08:00
include Staging: rtl8188eu: Remove unused macros 2015-02-26 12:55:17 -08:00
os_dep staging: rtl8188eu: os_dep: usb_ops_linux.c: Remove unused function 2015-01-17 14:06:03 -08:00
Kconfig staging: rtl8188eu: Remove P2P support 2014-07-09 21:08:47 -07:00
Makefile staging: rtl8188eu: Remove odm_debug.c 2014-09-23 23:47:12 -07:00
TODO