summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:39:39 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:26 +0300
commit299cca0e72fe676f78ded3c9c143cf2c004b923e (patch)
tree0f39fee93f14701ed3bcbd8fbae1c12b4fe847d1 /board
parent866ec874f52596229e072575b13ddabd3c73fb83 (diff)
downloadu-boot-299cca0e72fe676f78ded3c9c143cf2c004b923e.tar.xz
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')
-rw-r--r--board/engicam/imx8mp/icore_mx8mp.c2
-rw-r--r--board/freescale/imx8mp_evk/imx8mp_evk.c2
-rw-r--r--board/freescale/imx93_evk/imx93_evk.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/board/engicam/imx8mp/icore_mx8mp.c b/board/engicam/imx8mp/icore_mx8mp.c
index b309a12df0..f0096a2a87 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;
diff --git a/board/freescale/imx8mp_evk/imx8mp_evk.c b/board/freescale/imx8mp_evk/imx8mp_evk.c
index 8971a827df..c7692677f9 100644
--- a/board/freescale/imx8mp_evk/imx8mp_evk.c
+++ b/board/freescale/imx8mp_evk/imx8mp_evk.c
@@ -59,7 +59,7 @@ int board_init(void)
setup_fec();
}
- if (CONFIG_IS_ENABLED(DWC_ETH_QOS)) {
+ if (IS_ENABLED(CONFIG_DWC_ETH_QOS)) {
ret = setup_eqos();
}
diff --git a/board/freescale/imx93_evk/imx93_evk.c b/board/freescale/imx93_evk/imx93_evk.c
index 182ae5fd51..e01b2f59e3 100644
--- a/board/freescale/imx93_evk/imx93_evk.c
+++ b/board/freescale/imx93_evk/imx93_evk.c
@@ -69,7 +69,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;