commit | f0dff42124d3d312c236c5b934edeac477c818f7 | [log] [tgz] |
---|---|---|
author | Haneen Mohammed <hamohammed.sa@gmail.com> | Fri Mar 13 14:29:30 2015 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sun Mar 15 18:41:15 2015 +0100 |
tree | 49b924d0776a5f34870da082938e0ebea4578829 | |
parent | 81906c357a37bd82ca041bbdde9c663ea656f300 [diff] |
Staging: comedi: Remove parentheses around right side assignment Parentheses are not needed around the right hand side of an assignment. This patch remove parenthese of such occurences. 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>