summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:40:37 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 15:41:40 +0300
commiteca0986894388d537c0a129d204e2ba1a6360565 (patch)
tree629fa75b6be84e0d5733b1928d6ea187400b0349 /board
parent9dcf5ee5862c49e61cc6a5a64977527bac7b8238 (diff)
downloadu-boot-eca0986894388d537c0a129d204e2ba1a6360565.tar.xz
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>
Diffstat (limited to 'board')
-rw-r--r--board/xilinx/common/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/common/board.c b/board/xilinx/common/board.c
index bed1531993..d071ebfb9c 100644
--- a/board/xilinx/common/board.c
+++ b/board/xilinx/common/board.c
@@ -481,7 +481,7 @@ int __maybe_unused board_fit_config_name_match(const char *name)
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;