diff options
author | Olof Johansson <olof@lixom.net> | 2007-07-03 17:24:32 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-07-10 12:41:09 -0400 |
commit | 85cfb534280dd6a7c7ac399bb2888e1b8b286ece (patch) | |
tree | 708aaf539c3ed203b5460901c9a4896f82fe6a2a /drivers | |
parent | e54792396fb658b97e2f7b0541c6334020e1a3ec (diff) |
phylib: Add Marvell 88E1112 phy id
Add 88E1112 PHY ID to the marvell driver. Seems to do fine with the
88E1111 inits.
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/marvell.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 21cb3aa4ae7e..d2ede5ff9fff 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c | |||
@@ -268,6 +268,19 @@ static struct phy_driver marvell_drivers[] = { | |||
268 | .driver = {.owner = THIS_MODULE,}, | 268 | .driver = {.owner = THIS_MODULE,}, |
269 | }, | 269 | }, |
270 | { | 270 | { |
271 | .phy_id = 0x01410c90, | ||
272 | .phy_id_mask = 0xfffffff0, | ||
273 | .name = "Marvell 88E1112", | ||
274 | .features = PHY_GBIT_FEATURES, | ||
275 | .flags = PHY_HAS_INTERRUPT, | ||
276 | .config_init = &m88e1111_config_init, | ||
277 | .config_aneg = &marvell_config_aneg, | ||
278 | .read_status = &genphy_read_status, | ||
279 | .ack_interrupt = &marvell_ack_interrupt, | ||
280 | .config_intr = &marvell_config_intr, | ||
281 | .driver = {.owner = THIS_MODULE,}, | ||
282 | }, | ||
283 | { | ||
271 | .phy_id = 0x01410cc0, | 284 | .phy_id = 0x01410cc0, |
272 | .phy_id_mask = 0xfffffff0, | 285 | .phy_id_mask = 0xfffffff0, |
273 | .name = "Marvell 88E1111", | 286 | .name = "Marvell 88E1111", |