OSDN Git Service

Staging: slicoss: Removed unnecessary parentheses
authorTina Johnson <tinajohnson.1234@gmail.com>
Sat, 25 Oct 2014 17:43:41 +0000 (23:13 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Oct 2014 07:58:17 +0000 (15:58 +0800)
commitdb9c9305701a2ee006d2a28770a7aa2dda70a087
tree5834dadf9608dad5a023b2a76c582b4be89f6a8e
parentdfd94488a8aa9320d8048a108c602bf4307d4734
Staging: slicoss: Removed unnecessary parentheses

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>
drivers/staging/slicoss/slicoss.c