staging: octeon: Remove unneeded parentheses in assignment
authorJanani Ravichandran <janani.rvchndrn@gmail.com>
Thu, 11 Feb 2016 21:33:15 +0000 (16:33 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 03:40:02 +0000 (19:40 -0800)
commit1d5047c981f2e5a0fe6003c98b9c742c349d75a3
treef190c2fa71b5ed552d0aac951a273d8d7a570f7a
parentbeb6e57b50dcccf14077a20789f7b9bec9f6a3ad
staging: octeon: Remove unneeded parentheses in 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/octeon-usb/octeon-hcd.c
This page took 0.027616 seconds and 5 git commands to generate.