mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg/CpuExceptionHandlerLib: Fix spelling issue
*Excpetion* should be *Exception* Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Mike Maslenkin <mike.maslenkin@gmail.com> CC: Eric Dong <eric.dong@intel.com> CC: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Eric Dong <eric.dong@intel.com>
This commit is contained in:
parent
5a9b3eb8e5
commit
7c4207e955
|
@ -305,7 +305,7 @@ CommonExceptionHandlerWorker (
|
|||
@retval EFI_INVALID_PARAMETER StackSwitchData contains invalid content.
|
||||
**/
|
||||
EFI_STATUS
|
||||
ArchSetupExcpetionStack (
|
||||
ArchSetupExceptionStack (
|
||||
IN CPU_EXCEPTION_INIT_DATA *StackSwitchData
|
||||
);
|
||||
|
||||
|
|
|
@ -285,7 +285,7 @@ InitializeCpuExceptionHandlersEx (
|
|||
|
||||
InitData = &EssData;
|
||||
}
|
||||
Status = ArchSetupExcpetionStack (InitData);
|
||||
Status = ArchSetupExceptionStack (InitData);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ ArchRestoreExceptionContext (
|
|||
|
||||
**/
|
||||
EFI_STATUS
|
||||
ArchSetupExcpetionStack (
|
||||
ArchSetupExceptionStack (
|
||||
IN CPU_EXCEPTION_INIT_DATA *StackSwitchData
|
||||
)
|
||||
{
|
||||
|
|
|
@ -260,7 +260,7 @@ InitializeCpuExceptionHandlersEx (
|
|||
// Initializing stack switch is only necessary for Stack Guard functionality.
|
||||
//
|
||||
if (PcdGetBool (PcdCpuStackGuard) && InitData != NULL) {
|
||||
Status = ArchSetupExcpetionStack (InitData);
|
||||
Status = ArchSetupExceptionStack (InitData);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -126,7 +126,7 @@ ArchRestoreExceptionContext (
|
|||
|
||||
**/
|
||||
EFI_STATUS
|
||||
ArchSetupExcpetionStack (
|
||||
ArchSetupExceptionStack (
|
||||
IN CPU_EXCEPTION_INIT_DATA *StackSwitchData
|
||||
)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue