diff options
author | Heinrich Schuchardt | 2018-06-28 12:45:28 +0200 |
---|---|---|
committer | Alexander Graf | 2018-07-25 14:59:44 +0200 |
commit | bdfb894a3efbb35e184e9afece15d44bc59db43a (patch) | |
tree | d68d6d455da4258a212690010d9ccc032c6e5bf3 /include/efi_api.h | |
parent | 112f24301696d015e25090d713e2e5c73f4b8a3c (diff) |
efi_loader: correct EFI_RUNTIME_SERVICES_SIGNATURE
The value for EFI_RUNTIME_SERVICES_SIGNATURE does not match the
UEFI spec 2.7.
Reported-by: Takahiro Akashi <takahiro.akashi@linaro.org>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 696cb26133c..3a9da32b82c 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -189,7 +189,7 @@ enum efi_reset_type { }; /* EFI Runtime Services table */ -#define EFI_RUNTIME_SERVICES_SIGNATURE 0x5652453544e5552ULL +#define EFI_RUNTIME_SERVICES_SIGNATURE 0x56524553544e5552ULL #define CAPSULE_FLAGS_PERSIST_ACROSS_RESET 0x00010000 #define CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE 0x00020000 |