From: Vatika Harlalka Date: Sun, 1 Mar 2015 15:58:19 +0000 (+0530) Subject: Staging: rtl8192e: Remove unneeded brackets. X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~779 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f491da91f0081132d00d8d5297ccde112e30a8f;p=pandora-kernel.git Staging: rtl8192e: Remove unneeded brackets. These were detected with this Coccinelle script: @@ identifier f1, f2, f3; constant c; @@ f1 = ( - (f2 << f3) + f2 << f3 | - (f2 >> f3) + f2 >> f3 | - (f2 << c) + f2 << c | - (f2 >> c) + f2 >> c ) Signed-off-by: Vatika Harlalka Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed