diff options
Diffstat (limited to 'StandaloneMmPkg/Include/StandaloneMmCpu.h')
-rw-r--r-- | StandaloneMmPkg/Include/StandaloneMmCpu.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/StandaloneMmPkg/Include/StandaloneMmCpu.h b/StandaloneMmPkg/Include/StandaloneMmCpu.h index dbe6189b2b..fc3d81b6e6 100644 --- a/StandaloneMmPkg/Include/StandaloneMmCpu.h +++ b/StandaloneMmPkg/Include/StandaloneMmCpu.h @@ -30,16 +30,14 @@ extern EFI_MM_CPU_PROTOCOL mMmCpuState; //
// MM event handling specific declarations
//
-extern EFI_MM_COMMUNICATE_HEADER **PerCpuGuidedEventContext;
-extern MP_INFORMATION_HOB_DATA *mMpInformationHobData;
+extern EFI_MM_COMMUNICATE_HEADER *gGuidedEventContext;
extern EFI_MM_CONFIGURATION_PROTOCOL mMmConfig;
/**
The PI Standalone MM entry point for the CPU driver.
@param [in] EventId The event Id.
- @param [in] CpuNumber The CPU number.
- @param [in] NsCommBufferAddr Address of the NS common buffer.
+ @param [in] CommBufferAddr Address of the communication buffer.
@retval EFI_SUCCESS Success.
@retval EFI_INVALID_PARAMETER A parameter was invalid.
@@ -50,8 +48,7 @@ extern EFI_MM_CONFIGURATION_PROTOCOL mMmConfig; EFI_STATUS
PiMmStandaloneMmCpuDriverEntry (
IN UINTN EventId,
- IN UINTN CpuNumber,
- IN UINTN NsCommBufferAddr
+ IN UINTN CommBufferAddr
);
/**
|