diff options
author | Jakub Kicinski <kuba@kernel.org> | 2021-10-01 14:32:22 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-02 14:18:25 +0100 |
commit | e35b8d7dbb094c79daf920797c372911edc2d525 (patch) | |
tree | 2a7e6f183244075342c1f4602fc02e4406d7e157 /drivers/net/ipvlan | |
parent | 1681371762335221b02cb9266ac1a8b05c16fdef (diff) | |
download | linux-e35b8d7dbb094c79daf920797c372911edc2d525.tar.gz linux-e35b8d7dbb094c79daf920797c372911edc2d525.tar.bz2 linux-e35b8d7dbb094c79daf920797c372911edc2d525.zip |
net: use eth_hw_addr_set() instead of ether_addr_copy()
Convert from ether_addr_copy() to eth_hw_addr_set():
@@
expression dev, np;
@@
- ether_addr_copy(dev->dev_addr, np)
+ eth_hw_addr_set(dev, np)
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipvlan')
-rw-r--r-- | drivers/net/ipvlan/ipvlan_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ipvlan/ipvlan_main.c b/drivers/net/ipvlan/ipvlan_main.c index cca4a00f1c51..1d2f4e7d7324 100644 --- a/drivers/net/ipvlan/ipvlan_main.c +++ b/drivers/net/ipvlan/ipvlan_main.c @@ -787,7 +787,7 @@ static int ipvlan_device_event(struct notifier_block *unused, case NETDEV_CHANGEADDR: list_for_each_entry(ipvlan, &port->ipvlans, pnode) { - ether_addr_copy(ipvlan->dev->dev_addr, dev->dev_addr); + eth_hw_addr_set(ipvlan->dev, dev->dev_addr); call_netdevice_notifiers(NETDEV_CHANGEADDR, ipvlan->dev); } break; |