diff options
author | Peter Robinson | 2021-12-21 12:32:48 +0000 |
---|---|---|
committer | Tom Rini | 2022-01-07 09:30:45 -0500 |
commit | 79ac6917d0fba793029c294fbfcb660a5a8fbdeb (patch) | |
tree | bd0523c129fb5bc61f699154cb7d0a3f339759d2 /configs/udoo_neo_defconfig | |
parent | 2bbe1ba0c712c3eb1670952efa3351f501959eb3 (diff) |
udoo_neo: Fix ethernet
The ethernet has a RMII not RGMII, also needs DM_MDIO and finally
initialise it later in the process as it's not needed that early on
and not everything is ready so it locks up the device.
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'configs/udoo_neo_defconfig')
-rw-r--r-- | configs/udoo_neo_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/udoo_neo_defconfig b/configs/udoo_neo_defconfig index f01d2e22e99..2a377571005 100644 --- a/configs/udoo_neo_defconfig +++ b/configs/udoo_neo_defconfig @@ -46,8 +46,8 @@ CONFIG_PHYLIB=y CONFIG_PHY_MICREL=y CONFIG_PHY_MICREL_KSZ8XXX=y CONFIG_DM_ETH=y +CONFIG_DM_MDIO=y CONFIG_FEC_MXC=y -CONFIG_RGMII=y CONFIG_MII=y CONFIG_PINCTRL=y CONFIG_PINCTRL_IMX6=y |