]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
staging: wilc1000: Remove unneeded parentheses in assignment
authorJanani Ravichandran <janani.rvchndrn@gmail.com>
Thu, 11 Feb 2016 21:41:21 +0000 (16:41 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 03:31:50 +0000 (19:31 -0800)
commit5343c7bb0a67325c8a0012324e26b11625544686
treeeda546e56b992a66fb6ca4c4f00c2aa6e0cd61d3
parente682e91b61f879f1e3b07813b7541c37b337bdfb
staging: wilc1000: Remove unneeded parentheses in assignment

Remove parentheses around the right hand side of assignments. They are
unnecessary.
Semantic patch:

@@
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/wilc1000/wilc_sdio.c