mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-10 07:44:23 +08:00
net: qede: use eth_zero_addr() to clear mac address
Use eth_zero_addr() to clear mac address instead of memset(). Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
29b3705fac
commit
7ad9c26f75
@ -2674,8 +2674,8 @@ static void qede_get_generic_tlv_data(void *dev, struct qed_generic_tlvs *data)
|
||||
data->feat_flags |= QED_TLV_LSO;
|
||||
|
||||
ether_addr_copy(data->mac[0], edev->ndev->dev_addr);
|
||||
memset(data->mac[1], 0, ETH_ALEN);
|
||||
memset(data->mac[2], 0, ETH_ALEN);
|
||||
eth_zero_addr(data->mac[1]);
|
||||
eth_zero_addr(data->mac[2]);
|
||||
/* Copy the first two UC macs */
|
||||
netif_addr_lock_bh(edev->ndev);
|
||||
i = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user