StandaloneMmPkg/StandaloneMmCpu: fix typo Standlone -> Standalone
Fix a couple of occurrences of typo Standlone -> Standalone Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Supreeth Venkatesh <supreeth.venkatesh@arm.com> Reviewed-by: Achin Gupta <achin.gupta@arm.com>
This commit is contained in:
parent
2cc186178b
commit
c8102727ed
|
@ -65,7 +65,7 @@ EFI_MM_CONFIGURATION_PROTOCOL mMmConfig = {
|
||||||
STATIC EFI_MM_ENTRY_POINT mMmEntryPoint = NULL;
|
STATIC EFI_MM_ENTRY_POINT mMmEntryPoint = NULL;
|
||||||
|
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
PiMmStandloneArmTfCpuDriverEntry (
|
PiMmStandaloneArmTfCpuDriverEntry (
|
||||||
IN UINTN EventId,
|
IN UINTN EventId,
|
||||||
IN UINTN CpuNumber,
|
IN UINTN CpuNumber,
|
||||||
IN UINTN NsCommBufferAddr
|
IN UINTN NsCommBufferAddr
|
||||||
|
|
|
@ -74,7 +74,7 @@ GetGuidedHobData (
|
||||||
}
|
}
|
||||||
|
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
StandloneMmCpuInitialize (
|
StandaloneMmCpuInitialize (
|
||||||
IN EFI_HANDLE ImageHandle, // not actual imagehandle
|
IN EFI_HANDLE ImageHandle, // not actual imagehandle
|
||||||
IN EFI_MM_SYSTEM_TABLE *SystemTable // not actual systemtable
|
IN EFI_MM_SYSTEM_TABLE *SystemTable // not actual systemtable
|
||||||
)
|
)
|
||||||
|
@ -147,8 +147,8 @@ StandloneMmCpuInitialize (
|
||||||
// Share the entry point of the CPU driver
|
// Share the entry point of the CPU driver
|
||||||
DEBUG ((DEBUG_INFO, "Sharing Cpu Driver EP *0x%lx = 0x%lx\n",
|
DEBUG ((DEBUG_INFO, "Sharing Cpu Driver EP *0x%lx = 0x%lx\n",
|
||||||
(UINT64) CpuDriverEntryPointDesc->ArmTfCpuDriverEpPtr,
|
(UINT64) CpuDriverEntryPointDesc->ArmTfCpuDriverEpPtr,
|
||||||
(UINT64) PiMmStandloneArmTfCpuDriverEntry));
|
(UINT64) PiMmStandaloneArmTfCpuDriverEntry));
|
||||||
*(CpuDriverEntryPointDesc->ArmTfCpuDriverEpPtr) = PiMmStandloneArmTfCpuDriverEntry;
|
*(CpuDriverEntryPointDesc->ArmTfCpuDriverEpPtr) = PiMmStandaloneArmTfCpuDriverEntry;
|
||||||
|
|
||||||
// Find the descriptor that contains the whereabouts of the buffer for
|
// Find the descriptor that contains the whereabouts of the buffer for
|
||||||
// communication with the Normal world.
|
// communication with the Normal world.
|
||||||
|
|
|
@ -40,7 +40,7 @@ extern MP_INFORMATION_HOB_DATA *mMpInformationHobData;
|
||||||
extern EFI_MM_CONFIGURATION_PROTOCOL mMmConfig;
|
extern EFI_MM_CONFIGURATION_PROTOCOL mMmConfig;
|
||||||
|
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
PiMmStandloneArmTfCpuDriverEntry (
|
PiMmStandaloneArmTfCpuDriverEntry (
|
||||||
IN UINTN EventId,
|
IN UINTN EventId,
|
||||||
IN UINTN CpuNumber,
|
IN UINTN CpuNumber,
|
||||||
IN UINTN NsCommBufferAddr
|
IN UINTN NsCommBufferAddr
|
||||||
|
@ -55,10 +55,4 @@ PiMmCpuTpFwRootMmiHandler (
|
||||||
IN OUT UINTN *CommBufferSize OPTIONAL
|
IN OUT UINTN *CommBufferSize OPTIONAL
|
||||||
);
|
);
|
||||||
|
|
||||||
EFI_STATUS _PiMmStandloneArmTfCpuDriverEntry (
|
|
||||||
IN UINTN EventId,
|
|
||||||
IN UINTN CpuNumber,
|
|
||||||
IN UINTN NsCommBufferAddr
|
|
||||||
);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -18,12 +18,12 @@
|
||||||
|
|
||||||
[Defines]
|
[Defines]
|
||||||
INF_VERSION = 0x0001001A
|
INF_VERSION = 0x0001001A
|
||||||
BASE_NAME = StandloneMmCpu
|
BASE_NAME = StandaloneMmCpu
|
||||||
FILE_GUID = 58F7A62B-6280-42A7-BC38-10535A64A92C
|
FILE_GUID = 58F7A62B-6280-42A7-BC38-10535A64A92C
|
||||||
MODULE_TYPE = MM_STANDALONE
|
MODULE_TYPE = MM_STANDALONE
|
||||||
VERSION_STRING = 1.0
|
VERSION_STRING = 1.0
|
||||||
PI_SPECIFICATION_VERSION = 0x00010032
|
PI_SPECIFICATION_VERSION = 0x00010032
|
||||||
ENTRY_POINT = StandloneMmCpuInitialize
|
ENTRY_POINT = StandaloneMmCpuInitialize
|
||||||
|
|
||||||
[Sources]
|
[Sources]
|
||||||
StandaloneMmCpu.c
|
StandaloneMmCpu.c
|
||||||
|
|
Loading…
Reference in New Issue