From da74b58265698e10049dcf3fed05b31953097242 Mon Sep 17 00:00:00 2001 From: Ajay Singh Date: Mon, 19 Feb 2018 20:59:44 +0530 Subject: [PATCH] staging: wilc1000: remove Unnecessary parentheses around 'hif_set_mc->cnt' Fix "Unnecessary parentheses around 'hif_set_mc->cnt'" issue found by checkpatch.pl script. Signed-off-by: Ajay Singh Signed-off-by: Greg Kroah-Hartman --- drivers/staging/wilc1000/host_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 7ddd20d85569..6f9396620a65 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -2430,7 +2430,7 @@ static void Handle_SetMulticastFilter(struct wilc_vif *vif, *cur_byte++ = ((hif_set_mc->cnt >> 16) & 0xFF); *cur_byte++ = ((hif_set_mc->cnt >> 24) & 0xFF); - if ((hif_set_mc->cnt) > 0) + if (hif_set_mc->cnt > 0) memcpy(cur_byte, wilc_multicast_mac_addr_list, ((hif_set_mc->cnt) * ETH_ALEN)); -- 2.11.0