commit | dce34aee0088fbe89c05cb8e1a21d5bed4fedc5b | [log] [tgz] |
---|---|---|
author | Tina Johnson <tinajohnson.1234@gmail.com> | Mon Mar 09 12:02:47 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 09 13:37:22 2015 +0100 |
tree | 0dc7131b409f486bb26326297b514b4331ec9be8 | |
parent | a429238b9afc35c90ad1c8cc584ff5b0023c1a59 [diff] |
drivers: staging: rtl8188eu: 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>