[PATCH] efi: fix the runtime services table signature
Ahmad Fatoum <[email protected]> Thu, 9 Jul 2026 09:39:43 +0200
| Newsgroups | org.infradead.lists.barebox |
|---|---|
| Message-ID | <[email protected]> |
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 <[email protected]> --- 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