From: Haneen Mohammed Date: Fri, 13 Mar 2015 17:50:52 +0000 (+0300) Subject: Staging: rtl8192u: Remove parentheses around right side an assignment X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~407 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2060f31ae58ea5510c432fed8a32bdef33ac4cd7;p=pandora-kernel.git Staging: rtl8192u: 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 Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed