From: Heinrich Schuchardt Date: Thu, 28 Jun 2018 10:45:28 +0000 (+0200) Subject: efi_loader: correct EFI_RUNTIME_SERVICES_SIGNATURE X-Git-Tag: v2018.09-rc1~2^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bdfb894a3efbb35e184e9afece15d44bc59db43a;p=platform%2Fkernel%2Fu-boot.git 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 Signed-off-by: Heinrich Schuchardt Reviewed-by: Bin Meng Signed-off-by: Alexander Graf --- diff --git a/include/efi_api.h b/include/efi_api.h index 696cb26..3a9da32 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