Skip to content

Commit

Permalink
IntelFsp2Pkg: FSPM_ARCH2_UPD mismatching bug.
Browse files Browse the repository at this point in the history
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4019

FSPM_ARCH2_UPD in FspApiEntryM.nasm was not up-to-date and
should be fixed for both IA32 and X64 builds.

Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Signed-off-by: Chasel Chiu <chasel.chiu@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
  • Loading branch information
ChaselChiu authored and mergify[bot] committed Aug 15, 2022
1 parent 803ed06 commit a2b61de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryM.nasm
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ struc FSPM_UPD_COMMON_FSP24
.Revision: resb 1
.Reserved: resb 3
.Length resd 1
.NvsBufferPtr resq 1
.StackBase: resq 1
.StackSize: resq 1
.BootLoaderTolumSize: resd 1
.BootMode: resd 1
.FspEventHandler resq 1
.Reserved1: resb 24
.Reserved1: resb 16
; }
.size:
endstruc
Expand Down
3 changes: 2 additions & 1 deletion IntelFsp2Pkg/FspSecCore/X64/FspApiEntryM.nasm
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ struc FSPM_UPD_COMMON_FSP24
.Revision: resb 1
.Reserved: resb 3
.Length resd 1
.NvsBufferPtr resq 1
.StackBase: resq 1
.StackSize: resq 1
.BootLoaderTolumSize: resd 1
.BootMode: resd 1
.FspEventHandler resq 1
.Reserved1: resb 24
.Reserved1: resb 16
; }
.size:
endstruc
Expand Down

0 comments on commit a2b61de

Please sign in to comment.