From: Simon Glass Date: Sun, 5 Feb 2023 22:39:47 +0000 (-0700) Subject: Correct SPL use of EFI_UNICODE_COLLATION_PROTOCOL2 X-Git-Tag: v2023.07~163^2~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bed722328b152fe2ae48b382b5f73eebf449ffad;p=platform%2Fkernel%2Fu-boot.git Correct SPL use of EFI_UNICODE_COLLATION_PROTOCOL2 This converts 1 usage of this option to the non-SPL form, since there is no SPL_EFI_UNICODE_COLLATION_PROTOCOL2 defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/lib/efi_loader/efi_root_node.c b/lib/efi_loader/efi_root_node.c index 21a014d..108c14b 100644 --- a/lib/efi_loader/efi_root_node.c +++ b/lib/efi_loader/efi_root_node.c @@ -68,7 +68,7 @@ efi_status_t efi_root_node_register(void) &efi_guid_dt_fixup_protocol, &efi_dt_fixup_prot, #endif -#if CONFIG_IS_ENABLED(EFI_UNICODE_COLLATION_PROTOCOL2) +#if IS_ENABLED(CONFIG_EFI_UNICODE_COLLATION_PROTOCOL2) &efi_guid_unicode_collation_protocol2, &efi_unicode_collation_protocol2, #endif