Correct SPL use of REGEX
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_REGEX defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/board/xilinx/common/board.c b/board/xilinx/common/board.c
index bed1531..d071ebf 100644
--- a/board/xilinx/common/board.c
+++ b/board/xilinx/common/board.c
@@ -481,7 +481,7 @@
debug("%s: Check %s, default %s\n", __func__, name, board_name);
#if !defined(CONFIG_SPL_BUILD)
- if (CONFIG_IS_ENABLED(REGEX)) {
+ if (IS_ENABLED(CONFIG_REGEX)) {
struct slre slre;
int ret;