mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 20:53:53 +08:00
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 <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6492e48107
commit
da74b58265
@ -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));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user