Staging: iio: light: Removed unnecessary parentheses
authorTina Johnson <tinajohnson.1234@gmail.com>
Sat, 25 Oct 2014 17:43:39 +0000 (23:13 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Oct 2014 07:58:12 +0000 (15:58 +0800)
commit9ab6388cb8e7afa5377ae7f6976ab514025875d6
treeea2db5a8beab914e63e45ae70203196f34500fa1
parentbaf9ef82fc96ef37cb1d85aaf225663ff0c15fa6
Staging: iio: light: 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/iio/light/tsl2x7x_core.c