Jakub Kicinski 4e9b9de65c arch: use eth_hw_addr_set()
Commit 406f42fa0d3c ("net-next: When a bond have a massive amount
of VLANs...") introduced a rbtree for faster Ethernet address look
up. To maintain netdev->dev_addr in this tree we need to make all
the writes to it got through appropriate helpers.

Convert misc arch drivers from memcpy(... ETH_ADDR) to eth_hw_addr_set():

  @@
  expression dev, np;
  @@
  - memcpy(dev->dev_addr, np, ETH_ALEN)
  + eth_hw_addr_set(dev, np)

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Acked-by: Max Filippov <jcmvbkbc@gmail.com>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2021-10-02 14:18:25 +01:00
..
2021-09-24 13:35:07 +02:00
2021-09-24 13:35:07 +02:00
2021-08-30 18:52:11 -07:00
2021-10-02 14:18:25 +01:00
2021-09-24 13:35:07 +02:00
2021-09-24 13:35:07 +02:00
2021-09-24 13:35:07 +02:00
2021-09-24 13:35:07 +02:00
2021-09-24 13:35:07 +02:00
2021-09-24 13:35:07 +02:00
2021-09-24 13:35:07 +02:00
2020-03-09 11:12:19 +01:00
2021-07-10 11:01:38 -07:00