diff options
author | Mugunthan V N <mugunthanvnm@ti.com> | 2013-06-03 20:10:07 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-04 14:17:22 -0700 |
commit | 05d7cce8fe11758868f60fc03a83b638700901d8 (patch) | |
tree | 86373c8b2a1a3c990acefc8f265922c7cdc938ed /drivers/net/phy | |
parent | 1ca6d1b1aef4628ff0fe458135ddb008d134ad8f (diff) | |
download | op-kernel-dev-05d7cce8fe11758868f60fc03a83b638700901d8.zip op-kernel-dev-05d7cce8fe11758868f60fc03a83b638700901d8.tar.gz |
drivers: net: phy: at803x: add support for AT8031
This patch adds support for Atheros 8031 phy driver.
Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/at803x.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c index dda07ed..1f7091b 100644 --- a/drivers/net/phy/at803x.c +++ b/drivers/net/phy/at803x.c @@ -183,6 +183,21 @@ static struct phy_driver at803x_driver[] = { .driver = { .owner = THIS_MODULE, }, +}, { + /* ATHEROS 8031 */ + .phy_id = 0x004dd074, + .name = "Atheros 8031 ethernet", + .phy_id_mask = 0xffffffef, + .config_init = at803x_config_init, + .set_wol = at803x_set_wol, + .get_wol = at803x_get_wol, + .features = PHY_GBIT_FEATURES, + .flags = PHY_HAS_INTERRUPT, + .config_aneg = &genphy_config_aneg, + .read_status = &genphy_read_status, + .driver = { + .owner = THIS_MODULE, + }, } }; static int __init atheros_init(void) |