staging: greybus: audio: delete unnecessary parentheses
authorEva Rachel Retuya <eraretuya@gmail.com>
Wed, 21 Sep 2016 05:03:24 +0000 (13:03 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 Sep 2016 09:54:47 +0000 (11:54 +0200)
commit4f1cbe2a7b4fa50e5ae09e0a564c9dc4101b02fd
tree64eb70b30db238463c076998bc622e5557beedba
parentce35e9be62837d8242472264b511f9c27992adfa
staging: greybus: audio: delete unnecessary parentheses

Eliminate unneeded parentheses around the right hand side of an assignment.
Coccinelle semantic patch used:

@@
expression e1, e2;
identifier v;
@@

(
 v = (e1 == e2)
|
 v = (e1 != e2)
|
 v = (e1 <= e2)
|
 v = (e1 >= e2)
|
 v =
- (
e1
- )
)

Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/greybus/audio_topology.c