mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 06:36:46 +07:00
net: greth: Utilize of_get_mac_address()
Do not open code getting the MAC address exclusively from the "local-mac-address" property, but instead use of_get_mac_address() which looks up the MAC address using the 3 typical property names. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
58ad319834
commit
726bceca81
@ -34,6 +34,7 @@
|
||||
#include <linux/crc32.h>
|
||||
#include <linux/mii.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/of_net.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/slab.h>
|
||||
#include <asm/cacheflush.h>
|
||||
@ -1454,11 +1455,10 @@ static int greth_of_probe(struct platform_device *ofdev)
|
||||
break;
|
||||
}
|
||||
if (i == 6) {
|
||||
const unsigned char *addr;
|
||||
int len;
|
||||
addr = of_get_property(ofdev->dev.of_node, "local-mac-address",
|
||||
&len);
|
||||
if (addr != NULL && len == 6) {
|
||||
const u8 *addr;
|
||||
|
||||
addr = of_get_mac_address(ofdev->dev.of_node);
|
||||
if (addr) {
|
||||
for (i = 0; i < 6; i++)
|
||||
macaddr[i] = (unsigned int) addr[i];
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user