diff options
author | Shyam Saini <mayhs11saini@gmail.com> | 2017-01-16 06:56:21 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-16 19:46:54 +0300 |
commit | 4b5b1ac5c0b7e565ea5ef0031439bffedce12ff9 (patch) | |
tree | 92e55d5942b02558d6d02cb8d27156be63d659c9 /drivers/net/ethernet/sfc | |
parent | dbeaa8c2a4bad2295b2383a79a9749e3638ccf01 (diff) | |
download | linux-4b5b1ac5c0b7e565ea5ef0031439bffedce12ff9.tar.xz |
sfc: Replace memset with eth_zero_addr
Use eth_zero_addr to assign zero address to the given address array
instead of memset when the second argument in memset is address
of zero which makes the code clearer and also add header
file linux/etherdevice.h
Signed-off-by: Shyam Saini <mayhs11saini@gmail.com>
Acked-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sfc')
-rw-r--r-- | drivers/net/ethernet/sfc/ef10_sriov.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/ef10_sriov.c b/drivers/net/ethernet/sfc/ef10_sriov.c index a55c53d6f559..ed4b14283461 100644 --- a/drivers/net/ethernet/sfc/ef10_sriov.c +++ b/drivers/net/ethernet/sfc/ef10_sriov.c @@ -6,6 +6,7 @@ * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation, incorporated herein by reference. */ +#include <linux/etherdevice.h> #include <linux/pci.h> #include <linux/module.h> #include "net_driver.h" @@ -554,7 +555,7 @@ int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf_i, u8 *mac) return 0; fail: - memset(vf->mac, 0, ETH_ALEN); + eth_zero_addr(vf->mac); return rc; } |