mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-11-29 14:41:26 +01:00
phy: atheros: fix AR8021 PHY ID mask
The upper bits are all the OUI. Signed-off-by: Michael Walle <michael@walle.cc> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
4d4e4cf779
commit
f4d48f43b2
@ -120,7 +120,7 @@ static int ar8035_config(struct phy_device *phydev)
|
|||||||
static struct phy_driver AR8021_driver = {
|
static struct phy_driver AR8021_driver = {
|
||||||
.name = "AR8021",
|
.name = "AR8021",
|
||||||
.uid = 0x4dd040,
|
.uid = 0x4dd040,
|
||||||
.mask = 0x4ffff0,
|
.mask = 0xfffffff0,
|
||||||
.features = PHY_GBIT_FEATURES,
|
.features = PHY_GBIT_FEATURES,
|
||||||
.config = ar8021_config,
|
.config = ar8021_config,
|
||||||
.startup = genphy_startup,
|
.startup = genphy_startup,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user