From: Tina Johnson Date: Sat, 25 Oct 2014 17:43:42 +0000 (+0530) Subject: Staging: rts5208: Removed unnecessary parentheses X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~902 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fd4af8ab48a1485615eeb771d5461b4157ba079;p=pandora-kernel.git Staging: rts5208: 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