aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/mach-imx6ul.c
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@nxp.com>2016-05-11 16:39:30 -0300
committerShawn Guo <shawnguo@kernel.org>2016-06-09 20:49:29 +0800
commit20c15226d1c73150c4d9107301cac5dda0b7f995 (patch)
tree8e8fd5c2f83ae666f63dc0ce71478b0987f5e5f0 /arch/arm/mach-imx/mach-imx6ul.c
parentLinux 4.7-rc1 (diff)
downloadlinux-dev-20c15226d1c73150c4d9107301cac5dda0b7f995.tar.xz
linux-dev-20c15226d1c73150c4d9107301cac5dda0b7f995.zip
ARM: imx6ul: Fix Micrel PHY mask
The value used for Micrel PHY mask is not correct. Use the MICREL_PHY_ID_MASK definition instead. Thanks to Jiri Luznicky for proposing the fix at https://community.freescale.com/thread/387739 Cc: <stable@vger.kernel.org> Fixes: 709bc0657fe6f9f55 ("ARM: imx6ul: add fec MAC refrence clock and phy fixup init") Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-imx/mach-imx6ul.c')
-rw-r--r--arch/arm/mach-imx/mach-imx6ul.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mach-imx6ul.c b/arch/arm/mach-imx/mach-imx6ul.c
index a38b16b69923..b56de4b8cdf2 100644
--- a/arch/arm/mach-imx/mach-imx6ul.c
+++ b/arch/arm/mach-imx/mach-imx6ul.c
@@ -46,7 +46,7 @@ static int ksz8081_phy_fixup(struct phy_device *dev)
static void __init imx6ul_enet_phy_init(void)
{
if (IS_BUILTIN(CONFIG_PHYLIB))
- phy_register_fixup_for_uid(PHY_ID_KSZ8081, 0xffffffff,
+ phy_register_fixup_for_uid(PHY_ID_KSZ8081, MICREL_PHY_ID_MASK,
ksz8081_phy_fixup);
}