mirror of https://github.com/acidanthera/audk.git
Fix issue that calling GetS3MemoryInfo() with wrong order.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: "Yao, Jiewen" <jiewen.yao@intel.com> Reviewed-by: "Ma, Maurice" <maurice.ma@intel.com> Reviewed-by: "Rangarajan, Ravi P" <ravi.p.rangarajan@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18679 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e620b72924
commit
03195ad324
|
@ -246,7 +246,7 @@ FspHobProcessForMemoryResource (
|
||||||
|
|
||||||
S3PeiMemBase = 0;
|
S3PeiMemBase = 0;
|
||||||
S3PeiMemSize = 0;
|
S3PeiMemSize = 0;
|
||||||
Status = GetS3MemoryInfo (&S3PeiMemBase, &S3PeiMemSize);
|
Status = GetS3MemoryInfo (&S3PeiMemSize, &S3PeiMemBase);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
DEBUG((DEBUG_INFO, "S3 memory %Xh - %Xh bytes\n", S3PeiMemBase, S3PeiMemSize));
|
DEBUG((DEBUG_INFO, "S3 memory %Xh - %Xh bytes\n", S3PeiMemBase, S3PeiMemSize));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue