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>
pull/291/head
Janani Ravichandran 2016-02-11 16:41:21 -05:00 committed by Greg Kroah-Hartman
parent e682e91b61
commit 5343c7bb0a
1 changed files with 1 additions and 1 deletions

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;
}
/**