linux/drivers/staging/rtl8723au
Aya Mahfouz 5092450c9d staging: rtl8723au: hal: 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:23:47 -08:00
..
core Staging: rtl8723au: Add blank line after declarations 2015-02-26 13:03:11 -08:00
hal staging: rtl8723au: hal: rewrite the right hand side of an assignment 2015-02-26 15:23:47 -08:00
include staging: rtl8723au: core: rtw_cmd: Remove unused functions 2015-01-25 19:59:18 +08:00
os_dep Staging: rtl8723au: Add blank line after declarations 2015-02-26 13:04:53 -08:00
Kconfig staging: rtl8723au: Remove P2P/WiFiDirect/WiFiDisplay code 2014-04-15 11:03:56 -07:00
Makefile staging: rtl8723au: Fold rtw_ack_tx_done23a() into rtw23a_sctx_done_err() 2014-12-02 16:40:00 -08:00
TODO staging: r8723au: Turn on build of new driver 2014-04-05 14:53:46 -07:00