diff options
author | Haneen Mohammed <hamohammed.sa@gmail.com> | 2015-03-13 17:46:57 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-16 15:24:19 (GMT) |
commit | 8126e17f89259dfb6bf8ba6a2303a62702099e37 (patch) | |
tree | c9afb6778a61f60b1088e6a3397a2a8222756d4d /drivers/powercap | |
parent | acc4b97b3b0a09fc85a3b6a7b8acb14d4c0cf5a5 (diff) | |
download | linux-8126e17f89259dfb6bf8ba6a2303a62702099e37.tar.xz |
Staging: media: Remove parentheses around right side an assignment
Parentheses are not needed around the right hand side of an assignment.
This patch remove parenthese of such occurenses. Issue was detected and
solved using the following coccinelle script:
@rule1@
identifier x, y, z;
expression E1, E2;
@@
(
x = (y == z);
|
x = (E1 == E2);
|
x =
-(
...
-)
;
)
Signed-off-by: Haneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/powercap')
0 files changed, 0 insertions, 0 deletions