Commit 5343c7bb authored by Janani Ravichandran's avatar Janani Ravichandran Committed by Greg Kroah-Hartman

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: default avatarJanani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e682e91b
......@@ -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;
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment