diff options
author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:27 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:46 -0600 |
commit | 09eaa406f6d98681912ae3a34ea559e8237fec86 (patch) | |
tree | c0d3e94870745b3c7c33271ce7ef3630212223c6 | |
parent | 0e01334fc187212ced22b950e5dfd4d1c0913b96 (diff) |
net: freescale: Drop use of SPL_BUILD dependency
SPL_BUILD is not a Kconfig symbol. Perhaps the intent here is to use
SPL instead. However, this causes build errors, e.g. with T1024RDB_NAND
So drop the dependency on !SPL_BUILD since it does nothing.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/net/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 6ed325517c0..ce80e43966a 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -890,7 +890,7 @@ config FEC2_PHY_NORXERR config SYS_DPAA_QBMAN bool "Device tree fixup for QBMan on freescale SOCs" - depends on (ARM || PPC) && !SPL_BUILD + depends on ARM || PPC default y if ARCH_B4860 || \ ARCH_B4420 || \ ARCH_P1023 || \ |