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:
Siddharth Vadapalli 2023-07-03 13:05:47 +05:30 committed by Praneeth Bajjuri
parent 78e7d297ef
commit 01e2544d22
1 changed files with 1 additions and 1 deletions

View File

@ -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;