From: Tina Johnson Date: Sat, 25 Oct 2014 17:43:41 +0000 (+0530) Subject: Staging: slicoss: Removed unnecessary parentheses X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~903 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db9c9305701a2ee006d2a28770a7aa2dda70a087;p=pandora-kernel.git Staging: slicoss: Removed unnecessary parentheses Unnecessary parentheses around the right hand side of an assignment is removed using the following semantic patch: @@ identifier x,f; constant C; @@ ( -x = (f / C ); +x = f / C ; | -x = (f % C ); +x = f % C ; ) Signed-off-by: Tina Johnson Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed