1
0
Fork 0
alistair23-linux/drivers/staging/xgifb
Aya Mahfouz 9ea755f3e8 staging: xgifb: 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:43 -08:00
..
Kconfig
Makefile
TODO staging: xgifb: Update TODO 2014-05-18 10:03:32 -07:00
XGI_main.h staging: xgifb: Eliminate useless ifndefs 2014-05-18 10:03:31 -07:00
XGI_main_26.c staging: xgifb: remove extra parentheses around right bit shift operations 2015-03-06 15:22:43 -08:00
XGIfb.h
vb_def.h staging: xgifb: Removed a definition which was not used in driver 2014-11-03 16:10:38 -08:00
vb_init.c staging: xgifb: remove unnecessary else 2014-09-06 21:48:19 -07:00
vb_init.h
vb_setmode.c staging: xgifb: rewrite the right hand side of an assignment 2015-02-26 15:23:46 -08:00
vb_setmode.h Staging: xgifb: Fixed a warning of Space before semicolon 2013-08-12 14:08:27 -07:00
vb_struct.h video: move fbdev to drivers/video/fbdev 2014-04-17 08:10:19 +03:00
vb_table.h Staging: xgifb: remove space before semicolon 2013-10-14 09:15:27 -07:00
vb_util.c staging: xgifb: Removed an unnecessary assignment statement 2014-10-27 10:33:05 +08:00
vb_util.h
vgatypes.h staging: xgifb: Eliminate useless ifndefs 2014-05-18 10:03:31 -07:00