From: Simon Glass Date: Sun, 5 Feb 2023 22:40:49 +0000 (-0700) Subject: Correct SPL use of SL28_SPL_LOADS_OPTEE_BL32 X-Git-Tag: baikal/mips/sdk5.8.2~5^2~53^2~36 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=e5fbf3c9d0a0ffca28ed2e48aa253f18504ed0cc;p=uboot.git Correct SPL use of SL28_SPL_LOADS_OPTEE_BL32 This converts 1 usage of this option to the non-SPL form, since there is no SPL_SL28_SPL_LOADS_OPTEE_BL32 defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/board/kontron/sl28/sl28.c b/board/kontron/sl28/sl28.c index 257923685a..e78a0d5dd3 100644 --- a/board/kontron/sl28/sl28.c +++ b/board/kontron/sl28/sl28.c @@ -188,7 +188,7 @@ int ft_board_setup(void *blob, struct bd_info *bd) fdt_fixup_icid(blob); - if (CONFIG_IS_ENABLED(SL28_SPL_LOADS_OPTEE_BL32)) { + if (IS_ENABLED(CONFIG_SL28_SPL_LOADS_OPTEE_BL32)) { node = fdt_node_offset_by_compatible(blob, -1, "linaro,optee-tz"); if (node) fdt_set_node_status(blob, node, FDT_STATUS_OKAY);