commit | e682e91b61f879f1e3b07813b7541c37b337bdfb | [log] [tgz] |
---|---|---|
author | Alison Schofield <amsfield22@gmail.com> | Wed Feb 10 21:34:41 2016 -0800 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Thu Feb 11 19:31:50 2016 -0800 |
tree | 7cd9be12cba6af9d53bfe2a1da6d475576a2076b | |
parent | b3306362b89880da4d7c3280009da946ba42e762 [diff] |
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>