staging: sm750fb: Remove unnecessary parentheses
authorRehas Sachdeva <aquannie@gmail.com>
Tue, 20 Sep 2016 13:11:18 +0000 (18:41 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 Sep 2016 09:54:48 +0000 (11:54 +0200)
commit837b65555359b8232f54211317a2da28303d9c5a
tree1a9c094ebfe4c6125df5c2709b86addb2d0b755c
parentf3151e0043099bed805cecb7f363331e8c0a0449
staging: sm750fb: Remove unnecessary parentheses

Remove unnecessary parentheses from right side of an assignment. Issue
detected by the following Coccinelle semantic patch:

@r@
identifier x;
expression e1, e2;
@@

- x = (e1 << e2);
+ x = e1 << e2;

Signed-off-by: Rehas Sachdeva <aquannie@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/sm750_hw.c