aboutsummaryrefslogtreecommitdiff
path: root/board/engicam
diff options
context:
space:
mode:
authorSimon Glass2023-02-05 15:39:39 -0700
committerTom Rini2023-02-09 16:32:26 -0500
commit299cca0e72fe676f78ded3c9c143cf2c004b923e (patch)
tree0f39fee93f14701ed3bcbd8fbae1c12b4fe847d1 /board/engicam
parent866ec874f52596229e072575b13ddabd3c73fb83 (diff)
Correct SPL uses of DWC_ETH_QOS
This converts 3 usages of this option to the non-SPL form, since there is no SPL_DWC_ETH_QOS defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/engicam')
-rw-r--r--board/engicam/imx8mp/icore_mx8mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/engicam/imx8mp/icore_mx8mp.c b/board/engicam/imx8mp/icore_mx8mp.c
index b309a12df08..f0096a2a879 100644
--- a/board/engicam/imx8mp/icore_mx8mp.c
+++ b/board/engicam/imx8mp/icore_mx8mp.c
@@ -61,7 +61,7 @@ int board_init(void)
if (CONFIG_IS_ENABLED(FEC_MXC))
setup_fec();
- if (CONFIG_IS_ENABLED(DWC_ETH_QOS))
+ if (IS_ENABLED(CONFIG_DWC_ETH_QOS))
setup_eqos();
return 0;