staging: sm750fb: Remove unnecessary parenthesis.
authorSanjana Sanikommu <sanjana99reddy99@gmail.com>
Sun, 31 Mar 2019 10:41:42 +0000 (16:11 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 1 Apr 2019 17:31:11 +0000 (19:31 +0200)
commit9a3aebc02a8469decafd0aae557082ff15259b85
tree2d60220111c495e571cf756e09a45d25a7f5b763
parent135afb2b2184d95c5b57207b558e8f781b1e7f0e
staging: sm750fb: Remove unnecessary parenthesis.

Challenge suggested by coccinelle.
Remove unnecessary parenthesis around the right hand
of the assignment using the below script.

@@
binary operator op = {!=,&&,||,>=,<=,&,|};
expression l, r, t;
@@

(
l = (r op t)
|
l =
-(
r
-)
)

Signed-off-by: Sanjana Sanikommu <sanjana99reddy99@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/sm750.c