linux-kernel-test/drivers/staging/xgifb
Jiayi Ye 1d06bb4e9d staging: remove unneeded parentheses around the right hand side of an assignment
In assignments such as value = (FLASH_CMD_STATUS_REG_READ << 24);, parentheses
are not needed. The Coccinelle semantic patch was used to find cases.

@r@
identifier x;
expression e1, e2;
@@

- x = (e1 << e2);
+ x = e1 << e2;

Signed-off-by: Jiayi Ye <yejiayily@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2014-10-27 10:33:06 +08:00
..
Kconfig
Makefile
TODO staging: xgifb: Update TODO 2014-05-18 10:03:32 -07:00
vb_def.h staging: xgifb: Drop some more useless defines 2014-05-18 10:03:31 -07:00
vb_init.c staging: xgifb: remove unnecessary else 2014-09-06 21:48:19 -07:00
vb_init.h
vb_setmode.c staging: remove unneeded parentheses around the right hand side of an assignment 2014-10-27 10:33:06 +08:00
vb_setmode.h
vb_struct.h
vb_table.h
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
XGI_main_26.c staging: xgifb: remove unnecessary else 2014-09-06 21:48:19 -07:00
XGI_main.h staging: xgifb: Eliminate useless ifndefs 2014-05-18 10:03:31 -07:00
XGIfb.h