diff options
author | Jiayi Ye <yejiayily@gmail.com> | 2014-10-25 10:58:28 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-27 10:33:06 +0800 |
commit | 1d06bb4e9df30162d8690a26792611a141676279 (patch) | |
tree | 95b2d79fa25de4ceaac0af530173241450a35852 /drivers/staging/xgifb/Makefile | |
parent | 3e3f878f4d38c0724e51e192f232e1726daffd89 (diff) |
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>
Diffstat (limited to 'drivers/staging/xgifb/Makefile')
0 files changed, 0 insertions, 0 deletions