staging: rtl8712: Remove the unnecessary parantheses
authorG Pooja Shamili <poojashamili@gmail.com>
Sun, 6 Mar 2016 09:42:30 +0000 (15:12 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Mar 2016 06:09:09 +0000 (22:09 -0800)
commit1d1b7e87a376d3cc213fdabfefce2734a9999054
treef0db6d57a0f268aa02ef84fff64eb7404723f44b
parentbce2fc58b75a2e39dd50502aa8fe9f49b30fa478
staging: rtl8712: Remove the unnecessary parantheses

The unnecessary parantheses on the right side of assignments were removed,
as in most cases (expect for ==, >=, <=, !=), they are futile.

This was done using Coccinelle, the semantic patch being:

@@
expression E1,E2,E3;
binary operator bin_op = {==,>=,<=,!=};
@@

E1 =
(
  (
   E2 bin_op E3
  )
|
-(
E2
-)
)
;

Signed-off-by: G Pooja Shamili <poojashamili@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_mp.c
This page took 0.02737 seconds and 5 git commands to generate.