mirror of https://github.com/acidanthera/audk.git
Both printed fields are 64 bit long for IA32 too. It is better to print them as such.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Nikolai Saoukh <nms@otdel-1.org> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16188 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e7a2064ec7
commit
cec6685c7d
|
@ -218,7 +218,7 @@ Returns:
|
|||
"HobStart = %p\n"
|
||||
"Memory Top = %lx, Bottom = %lx\n"
|
||||
"Free Memory Top = %lx, Bottom = %lx\n"
|
||||
"NvStorageFvb = %p, Length = %x\n"
|
||||
"NvStorageFvb = %lx, Length = %lx\n"
|
||||
"BfvResource = %lx, Length = %lx\n"
|
||||
"NvStorageFvResource = %lx, Length = %lx\n"
|
||||
"NvStorage = %lx, Length = %lx\n"
|
||||
|
@ -236,7 +236,7 @@ Returns:
|
|||
gHob,
|
||||
gHob->Phit.EfiMemoryTop, gHob->Phit.EfiMemoryBottom,
|
||||
gHob->Phit.EfiFreeMemoryTop, gHob->Phit.EfiFreeMemoryBottom,
|
||||
gHob->NvStorageFvb.FvbInfo.Entries[0].Base, (UINTN) gHob->NvFtwFvb.FvbInfo.Entries[0].Length,
|
||||
gHob->NvStorageFvb.FvbInfo.Entries[0].Base, gHob->NvFtwFvb.FvbInfo.Entries[0].Length,
|
||||
gHob->BfvResource.PhysicalStart, gHob->BfvResource.ResourceLength,
|
||||
gHob->NvStorageFvResource.PhysicalStart, gHob->NvStorageFvResource.ResourceLength,
|
||||
gHob->NvStorage.FvbInfo.Entries[0].Base, gHob->NvStorage.FvbInfo.Entries[0].Length,
|
||||
|
|
Loading…
Reference in New Issue