From: Simon Glass Date: Mon, 6 Feb 2023 00:54:02 +0000 (-0700) Subject: Correct SPL use of EFI_MM_COMM_TEE X-Git-Tag: baikal/mips/sdk5.8.2~5^2~53^2~8 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=dc96f113b40c9bc6e67fab29f6df0ca0af74ec79;p=uboot.git Correct SPL use of EFI_MM_COMM_TEE This converts 1 usage of this option to the non-SPL form, since there is no SPL_EFI_MM_COMM_TEE defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/cmd/eficonfig.c b/cmd/eficonfig.c index 47c04cf536..46f652c35d 100644 --- a/cmd/eficonfig.c +++ b/cmd/eficonfig.c @@ -2670,7 +2670,7 @@ static const struct eficonfig_item maintenance_menu_items[] = { {"Edit Boot Option", eficonfig_process_edit_boot_option}, {"Change Boot Order", eficonfig_process_change_boot_order}, {"Delete Boot Option", eficonfig_process_delete_boot_option}, -#if (CONFIG_IS_ENABLED(EFI_SECURE_BOOT) && CONFIG_IS_ENABLED(EFI_MM_COMM_TEE)) +#if (CONFIG_IS_ENABLED(EFI_SECURE_BOOT) && IS_ENABLED(CONFIG_EFI_MM_COMM_TEE)) {"Secure Boot Configuration", eficonfig_process_secure_boot_config}, #endif {"Quit", eficonfig_process_quit},