From: Yang Gang Date: Fri, 3 Jan 2025 08:18:42 +0000 (+0800) Subject: efi: Correct ECPT table GUID X-Git-Tag: v2025.04-rc1~69^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c6c7e30aa006a3eab52302e5399f5eb592184ed;p=pandora-u-boot.git efi: Correct ECPT table GUID Refer to UEFI specification 2.10: #define EFI_CONFORMANCE_PROFILES_TABLE_GUID \ { 0x36122546, 0xf7e7, 0x4c8f, \ { 0xbd, 0x9b, 0xeb, 0x85, 0x25, 0xb5, 0x0c, 0x0b }} Signed-off-by: Yang Gang Fixes: 6b92c1735205 ("efi: Create ECPT table") Reviewed-by: Heinrich Schuchardt --- diff --git a/include/efi_api.h b/include/efi_api.h index b10f467f67f..eb61eafa028 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -229,7 +229,7 @@ enum efi_reset_type { 0x71, 0x94, 0x19, 0x9a, 0xd9, 0x2a) #define EFI_CONFORMANCE_PROFILES_TABLE_GUID \ - EFI_GUID(0x36122546, 0xf7ef, 0x4c8f, 0xbd, 0x9b, \ + EFI_GUID(0x36122546, 0xf7e7, 0x4c8f, 0xbd, 0x9b, \ 0xeb, 0x85, 0x25, 0xb5, 0x0c, 0x0b) #define EFI_CONFORMANCE_PROFILES_TABLE_VERSION 1