drivers: staging: rtl8188eu: core: Removed unnecessary parentheses
authorTina Johnson <tinajohnson.1234@gmail.com>
Mon, 9 Mar 2015 06:32:47 +0000 (12:02 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Mar 2015 12:37:22 +0000 (13:37 +0100)
commitdce34aee0088fbe89c05cb8e1a21d5bed4fedc5b
tree0dc7131b409f486bb26326297b514b4331ec9be8
parenta429238b9afc35c90ad1c8cc584ff5b0023c1a59
drivers: staging: rtl8188eu: 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 <tinajohnson.1234@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_security.c
This page took 0.024803 seconds and 5 git commands to generate.