staging: emxx_udc: Remove parentheses around the right hand side of assignment
authorJanani Ravichandran <janani.rvchndrn@gmail.com>
Thu, 11 Feb 2016 21:03:08 +0000 (16:03 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 04:05:35 +0000 (20:05 -0800)
commit599b87809594e2b8f742cbd318db31935689cceb
tree83d5fb14036db4fad7d195a265c1a08c5c70ec85
parent686f0c2301a762cf0fc73bd0cfaf62473ddc76d6
staging: emxx_udc: Remove parentheses around the right hand side of assignment

Remove parentheses around the right hand side of assignments as they are
not needed. Semantic patch used:

@@
expression a, b, c;
@@

(
  a = (b == c)
|
  a =
- (
  b
- )
)

Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/emxx_udc/emxx_udc.c