mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 00:47:26 +00:00
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 <sjg@chromium.org>
This commit is contained in:
parent
299cca0e72
commit
deda5d5ecd
1 changed files with 1 additions and 1 deletions
|
@ -629,7 +629,7 @@ repeat:
|
||||||
|
|
||||||
case 's':
|
case 's':
|
||||||
/* U-Boot uses UTF-16 strings in the EFI context only. */
|
/* 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)
|
!defined(API_BUILD)
|
||||||
if (qualifier == 'l') {
|
if (qualifier == 'l') {
|
||||||
str = string16(str, end, va_arg(args, u16 *),
|
str = string16(str, end, va_arg(args, u16 *),
|
||||||
|
|
Loading…
Reference in a new issue