Skip to content
Snippets Groups Projects
Commit dfcaa61c authored by Heiko Schocher's avatar Heiko Schocher Committed by Joe Hershberger
Browse files

net, phy: fix AR8031 phy_mask


AR8035 driver will be never applied because of wrong mask for
AR8031 driver. Fix this.

Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
Reported-by: default avatarPavel Nakonechny <pavel.nakonechny@skitlab.ru>
Cc: Andy Fleming <afleming@freescale.com>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
Patch: 276944
parent 65a6691e
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ static struct phy_driver AR8021_driver = {
static struct phy_driver AR8031_driver = {
.name = "AR8031/AR8033",
.uid = 0x4dd074,
.mask = 0xfffff0,
.mask = 0xffffff,
.features = PHY_GBIT_FEATURES,
.config = ar8021_config,
.startup = genphy_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