From a093f6eccd8071ff32c60a6bfe54f97b9e07c6ef Mon Sep 17 00:00:00 2001 From: Oliver Smith-Denny Date: Tue, 11 Mar 2025 11:18:44 -0700 Subject: [PATCH] PrmPkg: Align Data Buffer Signature to Spec edk2's PRM Data Buffer Signature is 'PRMD', however PRM spec 1.0 section 4.2.1 Static Data Buffer indicates that the signature should be 'PRMS'. This commit aligns edk2's signature definition with the spec. Signed-off-by: Oliver Smith-Denny --- PrmPkg/Include/PrmDataBuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PrmPkg/Include/PrmDataBuffer.h b/PrmPkg/Include/PrmDataBuffer.h index c5181f4719..3af067a8c9 100644 --- a/PrmPkg/Include/PrmDataBuffer.h +++ b/PrmPkg/Include/PrmDataBuffer.h @@ -12,7 +12,7 @@ #include -#define PRM_DATA_BUFFER_HEADER_SIGNATURE SIGNATURE_32('P','R','M','D') +#define PRM_DATA_BUFFER_HEADER_SIGNATURE SIGNATURE_32('P','R','M','S') #pragma pack(push, 1)