UefiCpuPkg: SmmCpuFeaturesLib Add the missing ASM_PFX in nasm code

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Liming Gao <liming.gao@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
This commit is contained in:
Liming Gao 2017-12-07 11:42:10 +08:00
parent 8764ed57b4
commit 3ff8b0c2bd
1 changed files with 3 additions and 3 deletions

View File

@ -188,15 +188,15 @@ CommonHandler:
add rsp, -0x20
mov rcx, rbx
mov rax, CpuSmmDebugEntry
mov rax, ASM_PFX(CpuSmmDebugEntry)
call rax
mov rcx, rbx
mov rax, SmiRendezvous ; rax <- absolute addr of SmiRedezvous
mov rax, ASM_PFX(SmiRendezvous) ; rax <- absolute addr of SmiRedezvous
call rax
mov rcx, rbx
mov rax, CpuSmmDebugExit
mov rax, ASM_PFX(CpuSmmDebugExit)
call rax
add rsp, 0x20