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
vb_def.h
vb_init.c
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
vb_struct.h
vb_table.h
vb_util.c
vb_util.h
vgatypes.h
XGI_main.h
XGI_main_26.c staging: xgifb: remove extra parentheses around right bit shift operations 2015-03-06 15:22:43 -08:00
XGIfb.h