rename XXXDflt to XXXDefault (expand for better readability)

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Yao, Jiewen" <jiewen.yao@intel.com>
Reviewed-by: "Mudusuru, Giri P" <giri.p.mudusuru@intel.com>



git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16835 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Yao, Jiewen 2015-02-12 07:37:30 +00:00 committed by jyao1
parent 95c95ac0ef
commit c030e74c67
2 changed files with 18 additions and 18 deletions

View File

@ -40,9 +40,9 @@ EXTERN FspApiCallingCheck:PROC
EXTERN GetFspBaseAddress:PROC EXTERN GetFspBaseAddress:PROC
EXTERN GetBootFirmwareVolumeOffset:PROC EXTERN GetBootFirmwareVolumeOffset:PROC
EXTERN Pei2LoaderSwitchStack:PROC EXTERN Pei2LoaderSwitchStack:PROC
EXTERN FspSelfCheck(FspSelfCheckDflt):PROC EXTERN FspSelfCheck(FspSelfCheckDefault):PROC
EXTERN LoadUcode(LoadUcodeDflt):PROC EXTERN LoadUcode(LoadUcodeDefault):PROC
EXTERN SecPlatformInit(SecPlatformInitDflt):PROC EXTERN SecPlatformInit(SecPlatformInitDefault):PROC
EXTERN SecCarInit:PROC EXTERN SecCarInit:PROC
; ;
@ -82,7 +82,7 @@ RET_ESI MACRO
ENDM ENDM
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
FspSelfCheckDflt PROC NEAR PUBLIC FspSelfCheckDefault PROC NEAR PUBLIC
; Inputs: ; Inputs:
; eax -> Return address ; eax -> Return address
; Outputs: ; Outputs:
@ -97,10 +97,10 @@ FspSelfCheckDflt PROC NEAR PUBLIC
xor eax, eax xor eax, eax
exit: exit:
jmp ebp jmp ebp
FspSelfCheckDflt ENDP FspSelfCheckDefault ENDP
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
SecPlatformInitDflt PROC NEAR PUBLIC SecPlatformInitDefault PROC NEAR PUBLIC
; Inputs: ; Inputs:
; eax -> Return address ; eax -> Return address
; Outputs: ; Outputs:
@ -115,10 +115,10 @@ SecPlatformInitDflt PROC NEAR PUBLIC
xor eax, eax xor eax, eax
exit: exit:
jmp ebp jmp ebp
SecPlatformInitDflt ENDP SecPlatformInitDefault ENDP
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
LoadUcodeDflt PROC NEAR PUBLIC LoadUcodeDefault PROC NEAR PUBLIC
; Inputs: ; Inputs:
; esp -> LOAD_UCODE_PARAMS pointer ; esp -> LOAD_UCODE_PARAMS pointer
; Register Usage: ; Register Usage:
@ -300,7 +300,7 @@ done:
exit: exit:
jmp ebp jmp ebp
LoadUcodeDflt ENDP LoadUcodeDefault ENDP
EstablishStackFsp PROC NEAR PRIVATE EstablishStackFsp PROC NEAR PRIVATE
; ;

View File

@ -183,7 +183,7 @@ ASM_GLOBAL ASM_PFX(Pei2LoaderSwitchStack)
.equ DATA_LEN_AT_STACK_TOP, (DATA_LEN_OF_PER0 + DATA_LEN_OF_MCUD + 4) .equ DATA_LEN_AT_STACK_TOP, (DATA_LEN_OF_PER0 + DATA_LEN_OF_MCUD + 4)
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# FspSelfCheckDflt # FspSelfCheckDefault
# Inputs: # Inputs:
# eax -> Return address # eax -> Return address
# Outputs: # Outputs:
@ -192,20 +192,20 @@ ASM_GLOBAL ASM_PFX(Pei2LoaderSwitchStack)
# eax is cleared and ebp is used for return address. # eax is cleared and ebp is used for return address.
# All others reserved. # All others reserved.
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
ASM_GLOBAL ASM_PFX(FspSelfCheckDflt) ASM_GLOBAL ASM_PFX(FspSelfCheckDefault)
ASM_PFX(FspSelfCheckDflt): ASM_PFX(FspSelfCheckDefault):
# #
# Save return address to EBP # Save return address to EBP
# #
movl %eax, %ebp movl %eax, %ebp
xorl %eax, %eax xorl %eax, %eax
FspSelfCheckDfltExit: FspSelfCheckDefaultExit:
jmp *%ebp jmp *%ebp
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# SecPlatformInitDflt # SecPlatformInitDefault
# Inputs: # Inputs:
# eax -> Return address # eax -> Return address
# Outputs: # Outputs:
@ -214,15 +214,15 @@ FspSelfCheckDfltExit:
# eax is cleared and ebp is used for return address. # eax is cleared and ebp is used for return address.
# All others reserved. # All others reserved.
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
ASM_GLOBAL ASM_PFX(SecPlatformInitDflt) ASM_GLOBAL ASM_PFX(SecPlatformInitDefault)
ASM_PFX(SecPlatformInitDflt): ASM_PFX(SecPlatformInitDefault):
# #
# Save return address to EBP # Save return address to EBP
# #
movl %eax, %ebp movl %eax, %ebp
xorl %eax, %eax xorl %eax, %eax
SecPlatformInitDfltExit: SecPlatformInitDefaultExit:
jmp *%ebp jmp *%ebp
@ -550,7 +550,7 @@ ASM_PFX(TempRamInitApi):
# CPUID/DeviceID check # CPUID/DeviceID check
# #
movl $TempRamInitApiL0, %eax movl $TempRamInitApiL0, %eax
jmp ASM_PFX(FspSelfCheckDflt) # @note: ESP can not be changed. jmp ASM_PFX(FspSelfCheckDefault) # @note: ESP can not be changed.
TempRamInitApiL0: TempRamInitApiL0:
cmpl $0x00, %eax cmpl $0x00, %eax
jnz NemInitExit jnz NemInitExit