Skip to content

Commit

Permalink
IntelFsp2Pkg: NvsBufferPtr is missing in Fsp24ApiEntryM.nasm
Browse files Browse the repository at this point in the history
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=4063
Added NvsBufferPtr to FSPM_UPD_COMMON_FSP24 in Fsp24ApiEntryM.nasm to
align with FSP 2.4 SPEC.

Cc: Chasel Chiu <chasel.chiu@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Ashraf Ali S <ashraf.ali.s@intel.com>
Cc: Chinni B Duggapu <chinni.b.duggapu@intel.com>
Signed-off-by: Ted Kuo <ted.kuo@intel.com>
Reviewed-by: Chasel Chiu <chasel.chiu@intel.com>
  • Loading branch information
tedkuo1 authored and mergify[bot] committed Sep 15, 2022
1 parent 8c92a95 commit 981bf66
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/Fsp24ApiEntryM.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/Fsp24ApiEntryM.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 981bf66

Please sign in to comment.