From: Simon Glass Date: Sun, 5 Feb 2023 22:39:40 +0000 (-0700) Subject: Correct SPL use of EFI_APP X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=deda5d5ecd440685e0c07fb6322ff6faa855a1be;p=u-boot.git Correct SPL use of EFI_APP This converts 1 usage of this option to the non-SPL form, since there is no SPL_EFI_APP defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 8de3882fb6..2d13e68b57 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -629,7 +629,7 @@ repeat: case 's': /* U-Boot uses UTF-16 strings in the EFI context only. */ -#if (CONFIG_IS_ENABLED(EFI_LOADER) || CONFIG_IS_ENABLED(EFI_APP)) && \ +#if (CONFIG_IS_ENABLED(EFI_LOADER) || IS_ENABLED(CONFIG_EFI_APP)) && \ !defined(API_BUILD) if (qualifier == 'l') { str = string16(str, end, va_arg(args, u16 *),