From: Heiko Schocher Date: Sun, 22 Sep 2013 07:55:49 +0000 (+0200) Subject: net, phy: fix AR8031 phy_mask X-Git-Tag: v2014.01-rc1~2^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dfcaa61c33e1fc5f737318cfdbcf7f7b49f237a3;p=platform%2Fkernel%2Fu-boot.git net, phy: fix AR8031 phy_mask AR8035 driver will be never applied because of wrong mask for AR8031 driver. Fix this. Signed-off-by: Heiko Schocher Reported-by: Pavel Nakonechny Cc: Andy Fleming Cc: Joe Hershberger Patch: 276944 --- diff --git a/drivers/net/phy/atheros.c b/drivers/net/phy/atheros.c index 7a1453f..f225d93 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 = 0xfffff0, + .mask = 0xffffff, .features = PHY_GBIT_FEATURES, .config = ar8021_config, .startup = genphy_startup,