diff options
author | Heinrich Schuchardt | 2021-11-17 18:55:59 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2021-11-20 10:53:00 +0100 |
commit | dc52578d7b48342c04484184199831893a983cbf (patch) | |
tree | f8e755ea10f9dd9754dd02e4edd1defc3cf5226d /include | |
parent | 22ad3f5f7b31e2ff3e3415047c584dfdff388aea (diff) |
efi_loader: bump EFI_SPECIFICATION_VERSION to 2.9
We have implemented all what is new in UEFI specification 2.9 and relevant
for U-Boot.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 1e956569a03..80109f012bc 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -20,8 +20,8 @@ #include <charset.h> #include <pe.h> -/* UEFI spec version 2.8 */ -#define EFI_SPECIFICATION_VERSION (2 << 16 | 80) +/* UEFI spec version 2.9 */ +#define EFI_SPECIFICATION_VERSION (2 << 16 | 90) /* Types and defines for EFI CreateEvent */ enum efi_timer_delay { |