Skip to content
Snippets Groups Projects
Commit e8194d58 authored by Stefano Babic's avatar Stefano Babic Committed by Joe Hershberger
Browse files

net: fix mask for phy Micrel KSZ9031


Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
parent 71817a16
No related branches found
No related tags found
No related merge requests found
...@@ -174,7 +174,7 @@ int ksz9031_phy_extended_read(struct phy_device *phydev, int devaddr, ...@@ -174,7 +174,7 @@ int ksz9031_phy_extended_read(struct phy_device *phydev, int devaddr,
static struct phy_driver ksz9031_driver = { static struct phy_driver ksz9031_driver = {
.name = "Micrel ksz9031", .name = "Micrel ksz9031",
.uid = 0x221620, .uid = 0x221620,
.mask = 0xfffffe, .mask = 0xfffff0,
.features = PHY_GBIT_FEATURES, .features = PHY_GBIT_FEATURES,
.config = &genphy_config, .config = &genphy_config,
.startup = &ksz90xx_startup, .startup = &ksz90xx_startup,
......
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