staging: fbtft: remove unnecessary parantheses around assignment
authorAastha Gupta <aastha.gupta4104@gmail.com>
Sat, 7 Oct 2017 14:47:18 +0000 (20:17 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Oct 2017 13:58:33 +0000 (15:58 +0200)
commit4aca3ca4b793e941eea162dc1bfb6df8c12c29a2
treeb7910c29de61bf03cabdf7446e469a19ed213f01
parentdb8c7f2b6443f2f255f6e8cd2c594ea9beec8fb5
staging: fbtft: remove unnecessary parantheses around assignment

Parentheses are not needed around the right hand side of an assignment.
This patch is done using Coccinelle:

@@
expression a, b;
@@

b =
-(
a
-)

Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fbtft/fb_uc1611.c