diff options
author | Oliver Smith-Denny <osde@microsoft.com> | 2025-03-11 11:18:44 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-03-12 19:59:59 +0000 |
commit | a093f6eccd8071ff32c60a6bfe54f97b9e07c6ef (patch) | |
tree | 5a7c70ede5c87f4234a478bc3e4ad0038925b86c | |
parent | 842c4c8afd306baeeb0a0e4799c172803375f5d2 (diff) | |
download | edk2-a093f6eccd8071ff32c60a6bfe54f97b9e07c6ef.zip edk2-a093f6eccd8071ff32c60a6bfe54f97b9e07c6ef.tar.gz edk2-a093f6eccd8071ff32c60a6bfe54f97b9e07c6ef.tar.bz2 |
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 <osde@microsoft.com>
-rw-r--r-- | PrmPkg/Include/PrmDataBuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PrmPkg/Include/PrmDataBuffer.h b/PrmPkg/Include/PrmDataBuffer.h index c5181f4..3af067a 100644 --- a/PrmPkg/Include/PrmDataBuffer.h +++ b/PrmPkg/Include/PrmDataBuffer.h @@ -12,7 +12,7 @@ #include <Uefi.h>
-#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)
|