commit | 8126e17f89259dfb6bf8ba6a2303a62702099e37 | [log] [tgz] |
---|---|---|
author | Haneen Mohammed <hamohammed.sa@gmail.com> | Fri Mar 13 20:46:57 2015 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 16 16:24:19 2015 +0100 |
tree | c9afb6778a61f60b1088e6a3397a2a8222756d4d | |
parent | acc4b97b3b0a09fc85a3b6a7b8acb14d4c0cf5a5 [diff] |
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>