commit | 837b65555359b8232f54211317a2da28303d9c5a | [log] [tgz] |
---|---|---|
author | Rehas Sachdeva <aquannie@gmail.com> | Tue Sep 20 18:41:18 2016 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Thu Sep 22 11:54:48 2016 +0200 |
tree | 1a9c094ebfe4c6125df5c2709b86addb2d0b755c | |
parent | f3151e0043099bed805cecb7f363331e8c0a0449 [diff] |
staging: sm750fb: Remove unnecessary parentheses Remove unnecessary parentheses from right side of an assignment. Issue detected by the following Coccinelle semantic patch: @r@ identifier x; expression e1, e2; @@ - x = (e1 << e2); + x = e1 << e2; Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>