Commit 3de6aa4c authored by Guenter Roeck's avatar Guenter Roeck Committed by David S. Miller

net: dsa: Report known silicon revisions for Marvell 88E6060

Report known silicon revisions when probing Marvell 88E6060 switches.
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 734cbb5b
......@@ -69,8 +69,11 @@ static char *mv88e6060_probe(struct device *host_dev, int sw_addr)
ret = mdiobus_read(bus, sw_addr + REG_PORT(0), 0x03);
if (ret >= 0) {
ret &= 0xfff0;
if (ret == 0x0600)
return "Marvell 88E6060 (A0)";
if (ret == 0x0601 || ret == 0x0602)
return "Marvell 88E6060 (B0)";
if ((ret & 0xfff0) == 0x0600)
return "Marvell 88E6060";
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment