From 5343c7bb0a67325c8a0012324e26b11625544686 Mon Sep 17 00:00:00 2001 From: Janani Ravichandran Date: Thu, 11 Feb 2016 16:41:21 -0500 Subject: [PATCH] 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 Signed-off-by: Greg Kroah-Hartman --- drivers/staging/wilc1000/wilc_sdio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/wilc_sdio.c b/drivers/staging/wilc1000/wilc_sdio.c index 7c20c8c..963875af 100644 --- a/drivers/staging/wilc1000/wilc_sdio.c +++ b/drivers/staging/wilc1000/wilc_sdio.c @@ -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; } /** -- 2.7.4