1
0
mirror of https://github.com/Mange/rtl8192eu-linux-driver synced 2025-07-29 22:27:07 +00:00

Merge pull request from CGarces/fix_eth_hw_addr_set

eth_hw_addr_set: use memcpy
This commit is contained in:
Carlos Garcés
2022-05-22 13:12:51 +02:00
committed by GitHub

@@ -221,7 +221,7 @@ typedef unsigned long systime;
/* Porting from linux kernel v5.15-rc1 48eab831ae8b9f7002a533fa4235eed63ea1f1a3 */
static inline void eth_hw_addr_set(struct net_device *dev, const u8 *addr)
{
ether_addr_copy(dev->dev_addr, addr);
memcpy(dev->dev_addr, addr, ETH_ALEN);
}
#endif