diff options
author | Olof Johansson <olof@lixom.net> | 2016-06-19 05:18:45 (GMT) |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-06-19 05:18:45 (GMT) |
commit | 7752b0d5dcfdb6dcaffb8c83b1ba2af2ef81a81d (patch) | |
tree | 626e3b1ab17b7318de1ce46cb77bcadd4a29d18e /arch | |
parent | a0110642e6efc49cc214a67b9749a791b0ca045d (diff) | |
parent | 20c15226d1c73150c4d9107301cac5dda0b7f995 (diff) | |
download | linux-7752b0d5dcfdb6dcaffb8c83b1ba2af2ef81a81d.tar.xz |
Merge tag 'imx-fixes-4.7' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into fixes
The i.MX fixes for 4.7:
- Correct Micrel PHY mask to fix the issue that i.MX6UL ethernet works
in U-Boot but not in kernel.
* tag 'imx-fixes-4.7' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux:
ARM: imx6ul: Fix Micrel PHY mask
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-imx/mach-imx6ul.c | 2 |
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 a38b16b..b56de4b 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); } |