diff options
| author | Simon Glass <[email protected]> | 2023-02-05 15:39:40 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-09 16:32:26 -0500 |
| commit | deda5d5ecd440685e0c07fb6322ff6faa855a1be (patch) | |
| tree | 4a5e5ebab0e46dce3c99a80ea24f27309212c996 | |
| parent | 299cca0e72fe676f78ded3c9c143cf2c004b923e (diff) | |
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 <[email protected]>
| -rw-r--r-- | lib/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 8de3882fb6c..2d13e68b579 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 *), |
