Staging: wilc1000: wilc_wfi_cfgoperations: Replace memset with eth_zero_addr
authorShraddha Barke <shraddha.6596@gmail.com>
Mon, 5 Oct 2015 11:30:32 +0000 (17:00 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 09:59:17 +0000 (10:59 +0100)
commitbcf0265384ded8c89264202faf59fb538c6b25c4
tree19bfb4f6a1c62074bad92f5437a2b05d4a1d5747
parent8a3c033262311ad274ef40f5ab4f2ec1d453ad72
Staging: wilc1000: wilc_wfi_cfgoperations: Replace memset with eth_zero_addr

Use eth_zero_addr to assign the zero address to the given address
array instead of memset when second argument is address of zero.

The Coccinelle patch used -

// <smpl>
@eth_zero_addr@
expression e;
@@

-memset(e,0x00,ETH_ALEN);
+eth_zero_addr(e);
// </smpl>

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c