]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL use of REGEX
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:40:37 +0000 (15:40 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Feb 2023 12:41:40 +0000 (07:41 -0500)
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>
board/xilinx/common/board.c

index bed15319934e60947c787d736dd8708a64f7863e..d071ebfb9cc2a14c33e3cafb57e8cb6fafdac252 100644 (file)
@@ -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;