From: Simon Glass Date: Sun, 5 Feb 2023 22:40:37 +0000 (-0700) Subject: Correct SPL use of REGEX X-Git-Tag: baikal/mips/sdk5.8.2~5^2~53^2~46 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=1356040bb8f96e31417ec2549b1441368be82a71;p=uboot.git 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 --- 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;