staging: wilc1000: Remove unneeded parentheses in assignment

Remove parentheses around the right hand side of assignments. They are
unnecessary.
Semantic patch:

@@
expression a, b, c;
@@

(
  a = (b == c)
|
  a =
- (
  b
- )
)

Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Janani Ravichandran 2016-02-11 16:41:21 -05:00 committed by Greg Kroah-Hartman
parent e682e91b61
commit 5343c7bb0a

View file

@ -676,7 +676,7 @@ static int sdio_init(struct wilc *wilc, bool resume)
if (!resume) {
memset(&g_sdio, 0, sizeof(wilc_sdio_t));
g_sdio.irq_gpio = (wilc->dev_irq_num);
g_sdio.irq_gpio = wilc->dev_irq_num;
}
/**