[PATCH 1/1] efi_loader: update EFI specification version

UEFI specification 2.11 has been published. There are no changes relevant for the U-Boot scope. So let us update the supported specification version.
Change the comment for the constant to Sphinx style.
Signed-off-by: Heinrich Schuchardt heinrich.schuchardt@canonical.com --- include/efi_api.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/include/efi_api.h b/include/efi_api.h index 61c4eda8f8a..b10f467f67f 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -20,8 +20,10 @@ #include <charset.h> #include <pe.h>
-/* UEFI spec version 2.9 */ -#define EFI_SPECIFICATION_VERSION (2 << 16 | 100) +/** + * define EFI_SPECIFICATION_VERSION - UEFI specification version + */ +#define EFI_SPECIFICATION_VERSION (2 << 16 | 110)
/* Types and defines for EFI CreateEvent */ enum efi_timer_delay {

On Fri, 13 Dec 2024 at 10:58, Heinrich Schuchardt heinrich.schuchardt@canonical.com wrote:
UEFI specification 2.11 has been published. There are no changes relevant for the U-Boot scope. So let us update the supported specification version.
Change the comment for the constant to Sphinx style.
Signed-off-by: Heinrich Schuchardt heinrich.schuchardt@canonical.com
include/efi_api.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/include/efi_api.h b/include/efi_api.h index 61c4eda8f8a..b10f467f67f 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -20,8 +20,10 @@ #include <charset.h> #include <pe.h>
-/* UEFI spec version 2.9 */ -#define EFI_SPECIFICATION_VERSION (2 << 16 | 100) +/**
- define EFI_SPECIFICATION_VERSION - UEFI specification version
- */
+#define EFI_SPECIFICATION_VERSION (2 << 16 | 110)
/* Types and defines for EFI CreateEvent */ enum efi_timer_delay { -- 2.45.2
Reviewed-by: Ilias Apalodimas ilias.apalodimas@linaro.org
participants (2)
-
Heinrich Schuchardt
-
Ilias Apalodimas