|
@@ -94,7 +94,12 @@ static int pasemi_get_mac_addr(struct pasemi_mac *mac)
|
|
return -ENOENT;
|
|
return -ENOENT;
|
|
}
|
|
}
|
|
|
|
|
|
- maddr = get_property(dn, "mac-address", NULL);
|
|
|
|
|
|
+ maddr = get_property(dn, "local-mac-address", NULL);
|
|
|
|
+
|
|
|
|
+ /* Fall back to mac-address for older firmware */
|
|
|
|
+ if (maddr == NULL)
|
|
|
|
+ maddr = get_property(dn, "mac-address", NULL);
|
|
|
|
+
|
|
if (maddr == NULL) {
|
|
if (maddr == NULL) {
|
|
dev_warn(&pdev->dev,
|
|
dev_warn(&pdev->dev,
|
|
"no mac address in device tree, not configuring\n");
|
|
"no mac address in device tree, not configuring\n");
|