From: Haneen Mohammed Date: Fri, 13 Mar 2015 11:29:30 +0000 (+0300) Subject: Staging: comedi: Remove parentheses around right side assignment X-Git-Tag: omap-for-v4.2/o2_dc~155^2~138^2~424 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0dff42124d3d312c236c5b934edeac477c818f7;p=pandora-kernel.git 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 Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed