staging: wilc1000: remove parentheses on right hand side of assignment
authorAlison Schofield <amsfield22@gmail.com>
Thu, 11 Feb 2016 05:34:41 +0000 (21:34 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 03:31:50 +0000 (19:31 -0800)
commite682e91b61f879f1e3b07813b7541c37b337bdfb
tree7cd9be12cba6af9d53bfe2a1da6d475576a2076b
parentb3306362b89880da4d7c3280009da946ba42e762
staging: wilc1000: remove parentheses on right hand side of assignment

Remove the unnecessary parens on right hand side of assignment.

Found using Coccinelle:
@@
identifier x;
expression e1, e2;
@@
- x = (e1 << e2)
+ x = e1 << e2

Signed-off-by: Alison Schofield <amsfield22@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wlan.c
This page took 0.044879 seconds and 5 git commands to generate.