From 9f491da91f0081132d00d8d5297ccde112e30a8f Mon Sep 17 00:00:00 2001 From: Vatika Harlalka Date: Sun, 1 Mar 2015 21:28:19 +0530 Subject: [PATCH] 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-format-patch failed