]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Staging: ft1000: ft1000-usb: Removed unnecessary parentheses
authorTina Johnson <tinajohnson.1234@gmail.com>
Sat, 25 Oct 2014 17:43:40 +0000 (23:13 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Oct 2014 07:58:12 +0000 (15:58 +0800)
commitdfd94488a8aa9320d8048a108c602bf4307d4734
tree959a59aa2a3035e8f2c06e4d4f985f14f5172691
parent9ab6388cb8e7afa5377ae7f6976ab514025875d6
Staging: ft1000: ft1000-usb: 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/ft1000/ft1000-usb/ft1000_download.c