mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 07:51:16 -04:00
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:
committed by
Greg Kroah-Hartman
parent
e682e91b61
commit
5343c7bb0a
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user