Skip to content
Snippets Groups Projects
Commit 626ee1e3 authored by Shengzhou Liu's avatar Shengzhou Liu Committed by Joe Hershberger
Browse files

phylib: update atheros ar803x phy


As AR8031 and AR8033 have same PHY ID 0x4dd074, they use the
common driver. Currently AR8031_driver didn't work for AR8033,
hence updated it to have it work on AR8031/AR8033.

Signed-off-by: default avatarShengzhou Liu <Shengzhou.Liu@freescale.com>
parent f754f5dc
No related branches found
No related tags found
No related merge requests found
...@@ -48,11 +48,11 @@ static struct phy_driver AR8021_driver = { ...@@ -48,11 +48,11 @@ static struct phy_driver AR8021_driver = {
}; };
static struct phy_driver AR8031_driver = { static struct phy_driver AR8031_driver = {
.name = "AR8031", .name = "AR8031/AR8033",
.uid = 0x4dd074, .uid = 0x4dd074,
.mask = 0xfffff0, .mask = 0xfffff0,
.features = PHY_GBIT_FEATURES, .features = PHY_GBIT_FEATURES,
.config = genphy_config, .config = ar8021_config,
.startup = genphy_startup, .startup = genphy_startup,
.shutdown = genphy_shutdown, .shutdown = genphy_shutdown,
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment