|
@@ -345,9 +345,10 @@ static void fec_rbd_clean(int last, struct fec_bd *pRbd)
|
|
writew(0, &pRbd->data_length);
|
|
writew(0, &pRbd->data_length);
|
|
}
|
|
}
|
|
|
|
|
|
-static int fec_get_hwaddr(struct eth_device *dev, unsigned char *mac)
|
|
|
|
|
|
+static int fec_get_hwaddr(struct eth_device *dev, int dev_id,
|
|
|
|
+ unsigned char *mac)
|
|
{
|
|
{
|
|
- imx_get_mac_from_fuse(mac);
|
|
|
|
|
|
+ imx_get_mac_from_fuse(dev_id, mac);
|
|
return !is_valid_ether_addr(mac);
|
|
return !is_valid_ether_addr(mac);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -822,8 +823,8 @@ static int fec_probe(bd_t *bd, int dev_id, int phy_id, uint32_t base_addr)
|
|
|
|
|
|
eth_register(edev);
|
|
eth_register(edev);
|
|
|
|
|
|
- if (fec_get_hwaddr(edev, ethaddr) == 0) {
|
|
|
|
- debug("got MAC address from fuse: %pM\n", ethaddr);
|
|
|
|
|
|
+ if (fec_get_hwaddr(edev, dev_id, ethaddr) == 0) {
|
|
|
|
+ debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
|
|
memcpy(edev->enetaddr, ethaddr, 6);
|
|
memcpy(edev->enetaddr, ethaddr, 6);
|
|
}
|
|
}
|
|
|
|
|