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>
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user