]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL uses of DWC_ETH_QOS
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:39:39 +0000 (15:39 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:26 +0000 (16:32 -0500)
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>
board/engicam/imx8mp/icore_mx8mp.c
board/freescale/imx8mp_evk/imx8mp_evk.c
board/freescale/imx93_evk/imx93_evk.c

index b309a12df088609e6fd6cc6dcb5f043846ceabf1..f0096a2a879b2b640757fc930e0ae4b897c582a4 100644 (file)
@@ -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;
index 8971a827df3ade5bfaafbd510f4c8d3e9c50f069..c7692677f9a3f5d26c96c8ce9e6dd35ed9a55b21 100644 (file)
@@ -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();
        }
 
index 182ae5fd518e1f42dc60a77bbd4f9843bad3f966..e01b2f59e3f3f7a239c1b806966eb16354ee84e8 100644 (file)
@@ -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;