aboutsummaryrefslogtreecommitdiff
path: root/lib/efi_selftest/efi_selftest_ecpt.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-12-18 08:10:09 -0500
committerTom Rini <trini@konsulko.com>2022-12-18 08:10:09 -0500
commit255cebbfa330ec82cd2632f7ede3501d60bf1aa7 (patch)
tree861f5b592b929e26d1392f3a1385adcbac5c637d /lib/efi_selftest/efi_selftest_ecpt.c
parent55e374f508da021cccc2fa90594ad147a1ba6c9d (diff)
parent5b5f6e0d61efe55df5eab82d231f2a483d3f49e7 (diff)
Merge tag 'efi-2023-01-rc4' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2023-01-rc4 Documentation: * Fix htmldoc build dependency UEFI: * Adjust EBBR version for compatibility table
Diffstat (limited to 'lib/efi_selftest/efi_selftest_ecpt.c')
-rw-r--r--lib/efi_selftest/efi_selftest_ecpt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/efi_selftest/efi_selftest_ecpt.c b/lib/efi_selftest/efi_selftest_ecpt.c
index e8cc13545d..09c5e96c5e 100644
--- a/lib/efi_selftest/efi_selftest_ecpt.c
+++ b/lib/efi_selftest/efi_selftest_ecpt.c
@@ -10,7 +10,7 @@
#include <efi_selftest.h>
static const efi_guid_t guid_ecpt = EFI_CONFORMANCE_PROFILES_TABLE_GUID;
-static const efi_guid_t guid_ebbr_2_0 = EFI_CONFORMANCE_PROFILE_EBBR_2_0_GUID;
+static const efi_guid_t guid_ebbr_2_1 = EFI_CONFORMANCE_PROFILE_EBBR_2_1_GUID;
/*
* ecpt_find_guid() - find GUID in EFI Conformance Profile Table
@@ -53,9 +53,9 @@ static int execute(void)
return EFI_ST_FAILURE;
}
- if (CONFIG_IS_ENABLED(EFI_EBBR_2_0_CONFORMANCE)) {
+ if (CONFIG_IS_ENABLED(EFI_EBBR_2_1_CONFORMANCE)) {
++expected_entries;
- if (ecpt_find_guid(ecpt, &guid_ebbr_2_0))
+ if (ecpt_find_guid(ecpt, &guid_ebbr_2_1))
return EFI_ST_FAILURE;
}