diff options
author | Paul Grimes <paul.grimes@amd.com> | 2024-06-11 09:59:23 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-06-18 05:45:15 +0000 |
commit | a9def1ed9da3a091d78983cb9233241b345f344c (patch) | |
tree | b1119e35ecd4c67c387ba4c5dcf50be795d100e4 | |
parent | 17424fae4f6f2478d7b67ff304e8f0f517d4d9c5 (diff) | |
download | edk2-a9def1ed9da3a091d78983cb9233241b345f344c.tar.gz |
MdePkg/Include: Update Msr.h header guard define
Update the Msr.h eader guard to comply with latest edk2 coding guidelines. This
change is part of a refactor of MSR definitions and SEV-SNP related defines,
which aims to remove family-specific references (filename) as these defines are
common to all modern EPYC Processors.
Signed-off-by: Paul Grimes <paul.grimes@amd.com>
-rw-r--r-- | MdePkg/Include/Register/Amd/Msr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Register/Amd/Msr.h b/MdePkg/Include/Register/Amd/Msr.h index 8f771a78bf..5f84aa6372 100644 --- a/MdePkg/Include/Register/Amd/Msr.h +++ b/MdePkg/Include/Register/Amd/Msr.h @@ -14,8 +14,8 @@ **/
-#ifndef __AMD_MSR_H__
-#define __AMD_MSR_H__
+#ifndef AMD_MSR_H_
+#define AMD_MSR_H_
#include <Register/Intel/ArchitecturalMsr.h>
#include <Register/Amd/SevSnpMsr.h>
|