diff options
| author | Michal Simek <[email protected]> | 2012-08-07 02:23:07 +0000 |
|---|---|---|
| committer | Joe Hershberger <[email protected]> | 2012-12-15 12:28:22 -0600 |
| commit | b4b81e83f599711b52e24ed8147f20c12630face (patch) | |
| tree | 99d59bbb5843f30666e05edd367b25330b9eb5f3 /drivers | |
| parent | 776e66e8f1df7f092e6a543d47391a85509c1a2b (diff) | |
phy: Add support for Marvell 88E1118R
Marvell 88E1118R has different uid then 88E1118.
Signed-off-by: Michal Simek <[email protected]>
CC: Andy Fleming <[email protected]>
CC: Zang Roy-R61911 <[email protected]>
CC: Kumar Gala <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/phy/marvell.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index e51e799e293..4b271989acb 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -425,6 +425,16 @@ static struct phy_driver M88E1118_driver = { .shutdown = &genphy_shutdown, }; +static struct phy_driver M88E1118R_driver = { + .name = "Marvell 88E1118R", + .uid = 0x1410e40, + .mask = 0xffffff0, + .features = PHY_GBIT_FEATURES, + .config = &m88e1118_config, + .startup = &m88e1118_startup, + .shutdown = &genphy_shutdown, +}; + static struct phy_driver M88E1121R_driver = { .name = "Marvell 88E1121R", .uid = 0x1410cb0, @@ -461,6 +471,7 @@ int phy_marvell_init(void) phy_register(&M88E1145_driver); phy_register(&M88E1121R_driver); phy_register(&M88E1118_driver); + phy_register(&M88E1118R_driver); phy_register(&M88E1111S_driver); phy_register(&M88E1011S_driver); |
