[PATCH] efi: fix the runtime services table signature
Ahmad Fatoum
a.fatoum at barebox.org
Thu Jul 9 00:39:43 PDT 2026
We had a typo in the signature constant, which was duly flagged by ARM's
Architecture Compliance Suite for UEFI. Fix this.
Signed-off-by: Ahmad Fatoum <a.fatoum at barebox.org>
---
include/efi/services.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/efi/services.h b/include/efi/services.h
index 3b9217a3bf22..2d7167b25205 100644
--- a/include/efi/services.h
+++ b/include/efi/services.h
@@ -159,7 +159,7 @@ enum efi_reset_type {
/*
* EFI Runtime Services table
*/
-#define EFI_RUNTIME_SERVICES_SIGNATURE ((u64)0x5652453544e5552ULL)
+#define EFI_RUNTIME_SERVICES_SIGNATURE ((u64)0x56524553544e5552ULL)
#define EFI_RUNTIME_SERVICES_REVISION 0x00010000
struct efi_capsule_header;
--
2.47.3
More information about the barebox
mailing list