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:
9ab6388
)
Staging: ft1000: ft1000-usb: Removed unnecessary parentheses
author
Tina Johnson
<tinajohnson.1234@gmail.com>
Sat, 25 Oct 2014 17:43:40 +0000
(23:13 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 28 Oct 2014 07:58:12 +0000
(15:58 +0800)
Unnecessary parentheses around the right hand side of an assignment
is removed using the following semantic patch:
@@
identifier x,f;
constant C;
@@
(
-x = (f / C );
+x = f / C ;
|
-x = (f % C );
+x = f % C ;
)
Signed-off-by: Tina Johnson <tinajohnson.1234@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
No differences found