From: Ajay Singh Date: Mon, 19 Feb 2018 15:29:44 +0000 (+0530) Subject: staging: wilc1000: remove Unnecessary parentheses around 'hif_set_mc->cnt' X-Git-Tag: v4.19~1302^2~393 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da74b58265698e10049dcf3fed05b31953097242;p=platform%2Fkernel%2Flinux-rpi.git 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 --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 7ddd20d..6f93966 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));