commit | 6c492211fbbb4085ebf7a8d62a9424ce2423794f | [log] [tgz] |
---|---|---|
author | Varsha Rao <rvarsha016@gmail.com> | Sat Mar 04 22:34:02 2017 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 06 11:17:41 2017 +0100 |
tree | 5c1b534764825598f8f41af716a918d402fb6a57 | |
parent | d89f191e0c8127813b39324440b0a82ba7a84ed8 [diff] |
staging: media: atomisp: Removed unnecessary parentheses. Removed parentheses on the right hand side of assignment, as they are not required. The following coccinelle script is used to fix this issue: @@ binary operator op = {<<,>>,+,/}; local idexpression id; expression e1, e2; @@ id = -( e1 op e2 -) Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>