commit | 143ff119553af104ab5c151401bbef11136cfacd | [log] [tgz] |
---|---|---|
author | Tina Johnson <tinajohnson.1234@gmail.com> | Mon Mar 09 12:02:49 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 09 13:37:22 2015 +0100 |
tree | 88027516b15b9cd5522cb22fe3ad466c0d5fbb7f | |
parent | 69e2b47fa082dffad06643c85be2d36f4ef6ab9c [diff] |
drivers: staging: rtl8723au: core: Removed unnecessary parentheses Parentheses around the right side of an assignment statement are unnecessary and hence removed. Coccinelle was used to produce the patch: @rule1@ identifier x,y; constant c; @@ ( x = -( y << c -) ; | x = -( y >> c -) ; | x = -( y + c -) ; | x = -( y - c -) ; ) Signed-off-by: Tina Johnson <tinajohnson.1234@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>