diff options
author | Dun Tan <dun.tan@intel.com> | 2024-01-11 15:49:46 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-15 01:46:36 +0000 |
commit | f5b91c60ef24eecf5702e061dd7fd700943405b2 (patch) | |
tree | 5abcf479486846d5a8f3d7e6df8004c486345efb /UefiCpuPkg/Include | |
parent | db59ff333dee07afdd64f9b2efc682d475a9c3ad (diff) | |
download | edk2-f5b91c60ef24eecf5702e061dd7fd700943405b2.tar.gz |
UefiCpuPkg: change name of gMpInformationHobGuid2
Change name of gMpInformationHobGuid2 to
gMpInformation2HobGuid. It's to align with
the file name MpInformation2.h and the
structure name MP_INFORMATION2_HOB_DATA.
Signed-off-by: Dun Tan <dun.tan@intel.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Cc: Rahul Kumar <rahul1.kumar@intel.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'UefiCpuPkg/Include')
-rw-r--r-- | UefiCpuPkg/Include/Guid/MpInformation2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UefiCpuPkg/Include/Guid/MpInformation2.h b/UefiCpuPkg/Include/Guid/MpInformation2.h index 43185a4b01..2d9266f061 100644 --- a/UefiCpuPkg/Include/Guid/MpInformation2.h +++ b/UefiCpuPkg/Include/Guid/MpInformation2.h @@ -53,6 +53,6 @@ typedef struct { #define GET_MP_INFORMATION_ENTRY(MpInfoHobData, Index) \
(MP_INFORMATION2_ENTRY *)((UINTN)&((MP_INFORMATION2_HOB_DATA *)(MpInfoHobData))->Entry + (MpInfoHobData)->EntrySize * Index)
-extern EFI_GUID gMpInformationHobGuid2;
+extern EFI_GUID gMpInformation2HobGuid;
#endif
|