mirror of https://github.com/acidanthera/audk.git
31 lines
800 B
C
31 lines
800 B
C
|
/** @file
|
||
|
MmCommunicationDxe driver produces MmCommunication protocol and
|
||
|
create the notifications of some protocols and event.
|
||
|
|
||
|
Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#include "MmCommunicationDxe.h"
|
||
|
|
||
|
/**
|
||
|
The Entry Point for MmCommunicateDxe driver.
|
||
|
|
||
|
@param ImageHandle The firmware allocated handle for the EFI image.
|
||
|
@param SystemTable A pointer to the EFI System Table.
|
||
|
|
||
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
||
|
@retval Other Some error occurred when executing this entry point.
|
||
|
|
||
|
**/
|
||
|
EFI_STATUS
|
||
|
EFIAPI
|
||
|
MmCommunicationEntryPoint (
|
||
|
IN EFI_HANDLE ImageHandle,
|
||
|
IN EFI_SYSTEM_TABLE *SystemTable
|
||
|
)
|
||
|
{
|
||
|
return EFI_SUCCESS;
|
||
|
}
|