staging: rtl8188eu: core: Removed unnecessary parenthesis.
authorGulsah Kose <gulsah.1004@gmail.com>
Wed, 29 Oct 2014 19:29:56 +0000 (21:29 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Oct 2014 23:20:56 +0000 (16:20 -0700)
commit0d20dac3775ea61443dd52a8cf9c55e60b48e3a3
tree09fafb3e28529b9a245055f06b4ad048e2a71291
parenta58af1e1ce10b1a92221823aa8ab0de881d9a129
staging: rtl8188eu: core: Removed unnecessary parenthesis.

This patch removes unnecessarry parenthesis in rtw_security.c by
using this coccinelle script:

@r1@
expression e1,e2;
@@
if
- ((e1 == e2))
+ (e1 == e2)
{...}

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_security.c