diff options
author | Tom Rini <trini@ti.com> | 2014-01-14 14:39:53 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-01-14 14:39:53 -0500 |
commit | 78104809525d352056f57ea6e187e56351d1a80d (patch) | |
tree | bef873715d24e6daf7e52743861353b48a961dea /drivers | |
parent | a4d481ed81d522b682d82e2742ad89babf9ab291 (diff) | |
parent | f66e3ded61aeafc67f3ebb6ab0302b455f102ce3 (diff) | |
download | u-boot-imx-78104809525d352056f57ea6e187e56351d1a80d.zip u-boot-imx-78104809525d352056f57ea6e187e56351d1a80d.tar.gz u-boot-imx-78104809525d352056f57ea6e187e56351d1a80d.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-net
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/atheros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/atheros.c b/drivers/net/phy/atheros.c index b20b4df..32c2ab9 100644 --- a/drivers/net/phy/atheros.c +++ b/drivers/net/phy/atheros.c @@ -50,7 +50,7 @@ static struct phy_driver AR8021_driver = { static struct phy_driver AR8031_driver = { .name = "AR8031/AR8033", .uid = 0x4dd074, - .mask = 0x4fffff, + .mask = 0xffffffef, .features = PHY_GBIT_FEATURES, .config = ar8021_config, .startup = genphy_startup, @@ -60,7 +60,7 @@ static struct phy_driver AR8031_driver = { static struct phy_driver AR8035_driver = { .name = "AR8035", .uid = 0x4dd072, - .mask = 0x4fffff, + .mask = 0xffffffef, .features = PHY_GBIT_FEATURES, .config = ar8035_config, .startup = genphy_startup, |