From: Chunhe Lan Date: Fri, 1 Nov 2013 09:17:44 +0000 (+0800) Subject: net/phy: Fix the phy id mask of AR8031 X-Git-Tag: v2014.01-rc1~2^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=317745785341774644b8bb1cbb0300155f31cee6;hp=b1690bc39cfdba82be34b1a98abc319339070698;p=platform%2Fkernel%2Fu-boot.git net/phy: Fix the phy id mask of AR8031 The both AR8031 and AR8035 belong to Atheros 803x serial PHY. So the phy id mask of AR8031 is the same to the phy id mask of AR8035. The right mask value is 0x4fffff. This patch has been tested on the P1010 and P1023. Signed-off-by: Chunhe Lan Cc: Joe Hershberger Patch: 287748 --- diff --git a/drivers/net/phy/atheros.c b/drivers/net/phy/atheros.c index f225d93..215658a 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 = 0xffffff, + .mask = 0x4fffff, .features = PHY_GBIT_FEATURES, .config = ar8021_config, .startup = genphy_startup,