diff options
author | Marek Vasut <marex@denx.de> | 2020-01-27 01:15:27 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-02-09 15:03:54 +0100 |
commit | b91f28de83ee975650f69766208fedb7489391e2 (patch) | |
tree | c64065f81f13343067ae95b9856faddc785ac926 /include/configs | |
parent | e772b4fea8e4c9c991f8270c960d5b20c8a82f85 (diff) |
ARM: imx: novena: Enable DM ethernet
Convert to DM ethernet to prevent board removal.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Vagrant Cascadian <vagrant@debian.org>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/novena.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/include/configs/novena.h b/include/configs/novena.h index c03b8db2ba..2b8419563c 100644 --- a/include/configs/novena.h +++ b/include/configs/novena.h @@ -53,13 +53,8 @@ #include "imx6_spl.h" /* common IMX6 SPL configuration */ /* Ethernet Configuration */ -#ifdef CONFIG_CMD_NET -#define CONFIG_FEC_MXC -#define IMX_FEC_BASE ENET_BASE_ADDR -#define CONFIG_FEC_XCV_TYPE RGMII -#define CONFIG_ETHPRIME "FEC" -#define CONFIG_FEC_MXC_PHYADDR 0x7 -#define CONFIG_ARP_TIMEOUT 200UL +#ifdef CONFIG_SPL_BUILD +#undef CONFIG_DM_ETH #endif /* I2C */ |