From: Janani Ravichandran Date: Thu, 11 Feb 2016 21:41:21 +0000 (-0500) Subject: staging: wilc1000: Remove unneeded parentheses in assignment X-Git-Tag: v4.6-rc1~103^2~988 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5343c7bb0a67325c8a0012324e26b11625544686;p=platform%2Fkernel%2Flinux-exynos.git 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 --- 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; } /**