mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 16:12:52 +00:00
ethernet:ti:cpsw: fix phy identification with multiple slaves on fixed-phy
When using more than one slave with ti cpsw and fixed phy the pd->phy_id
will be always zero, but slave_data->phy_id must be unique. pd->phy_id
means a "phy hardware id" whereas slave_data->phy_id means an "unique id",
so we should use pd->addr which has the same unique meaning.
Fixes: 1f71e8c96f
("drivers: net: cpsw: Add support for fixed-link PHY")
Signed-off-by: Pascal Speck <kernel@iktek.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
73796d8bf2
commit
1873c58d4a
@ -2047,7 +2047,7 @@ static int cpsw_probe_dt(struct cpsw_priv *priv,
|
|||||||
if (!pd)
|
if (!pd)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
|
snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
|
||||||
PHY_ID_FMT, pd->bus->id, pd->phy_id);
|
PHY_ID_FMT, pd->bus->id, pd->addr);
|
||||||
goto no_phy_slave;
|
goto no_phy_slave;
|
||||||
}
|
}
|
||||||
parp = of_get_property(slave_node, "phy_id", &lenp);
|
parp = of_get_property(slave_node, "phy_id", &lenp);
|
||||||
|
Loading…
Reference in New Issue
Block a user