arm: mach-k3: am625_init: Fix SPL_ETH config
The config SPL_ETH_SUPPORT is not defined. The correct config is
SPL_ETH. Fix it.
Fixes: e56107ff97 ("arm: mach-k3: am625_init: Probe AM65 CPSW NUSS")
Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com>
This commit is contained in:
parent
78e7d297ef
commit
01e2544d22
|
|
@ -213,7 +213,7 @@ void board_init_f(ulong dummy)
|
|||
panic("DRAM init failed: %d\n", ret);
|
||||
#endif
|
||||
|
||||
if (IS_ENABLED(CONFIG_SPL_ETH_SUPPORT) && IS_ENABLED(CONFIG_TI_AM65_CPSW_NUSS) &&
|
||||
if (IS_ENABLED(CONFIG_SPL_ETH) && IS_ENABLED(CONFIG_TI_AM65_CPSW_NUSS) &&
|
||||
spl_boot_device() == BOOT_DEVICE_ETHERNET) {
|
||||
struct udevice *cpswdev;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue