git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dce34ae
)
drivers: staging: rtl8712: Removed unnecessary parentheses
author
Tina Johnson
<tinajohnson.1234@gmail.com>
Mon, 9 Mar 2015 06:32:48 +0000
(12:02 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 9 Mar 2015 12:37:22 +0000
(13:37 +0100)
Parentheses around the right side of an assignment statement are
unnecessary and hence removed. Coccinelle was used to produce the
patch:
@rule1@
identifier x,y;
constant c;
@@
(
x =
-(
y << c
-)
;
|
x =
-(
y >> c
-)
;
|
x =
-(
y + c
-)
;
|
x =
-(
y - c
-)
;
)
Signed-off-by: Tina Johnson <tinajohnson.1234@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
No differences found