From: Tina Johnson Date: Mon, 9 Mar 2015 06:32:49 +0000 (+0530) Subject: drivers: staging: rtl8723au: core: Removed unnecessary parentheses X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~508 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=143ff119553af104ab5c151401bbef11136cfacd;p=pandora-kernel.git drivers: staging: rtl8723au: core: Removed unnecessary parentheses Parentheses around the right side of an assignment statement are unnecessary and hence removed. Coccinelle was used to produce the patch: @rule1@ identifier x,y; constant c; @@ ( x = -( y << c -) ; | x = -( y >> c -) ; | x = -( y + c -) ; | x = -( y - c -) ; ) Signed-off-by: Tina Johnson Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed