diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2017-02-16 15:11:19 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-17 19:03:39 +0100 |
commit | 6850f8b50928463213532d7812b74161d31d3cbd (patch) | |
tree | 4d78938d07ca136118438d39f4870f9092e3217c /drivers/net/ethernet/broadcom/bgmac-bcma.c | |
parent | Merge tag 'wireless-drivers-next-for-davem-2017-02-16' of git://git.kernel.or... (diff) | |
download | linux-6850f8b50928463213532d7812b74161d31d3cbd.tar.xz linux-6850f8b50928463213532d7812b74161d31d3cbd.zip |
net: bgmac: store MAC address directly in netdev->dev_addr
After commit 34a5102c3235 ("net: bgmac: allocate struct bgmac just once
& don't copy it") the mac_addr member of struct bgmac is no longer
necessary to pass the MAC address to bgmac_enet_probe(). Instead it can
directly be stored in netdev->dev_addr.
Also use eth_hw_addr_random() instead of eth_random_addr() in case a
random MAC is nedded. This will make sure netdev->addr_assign_type will
be properly set.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Acked-by: Jon Mason <jon.mason@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/broadcom/bgmac-bcma.c')
-rw-r--r-- | drivers/net/ethernet/broadcom/bgmac-bcma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/bgmac-bcma.c b/drivers/net/ethernet/broadcom/bgmac-bcma.c index 5ef60d4f12b4..d59cfcc4c4d5 100644 --- a/drivers/net/ethernet/broadcom/bgmac-bcma.c +++ b/drivers/net/ethernet/broadcom/bgmac-bcma.c @@ -144,7 +144,7 @@ static int bgmac_probe(struct bcma_device *core) goto err; } - ether_addr_copy(bgmac->mac_addr, mac); + ether_addr_copy(bgmac->net_dev->dev_addr, mac); /* On BCM4706 we need common core to access PHY */ if (core->id.id == BCMA_CORE_4706_MAC_GBIT && |