]> git.proxmox.com Git - mirror_edk2.git/commitdiff
StandaloneMmPkg: Remove StandaloneMmDriverEntryPoint.h
authorMichael Kubacki <michael.kubacki@microsoft.com>
Thu, 25 Feb 2021 03:33:12 +0000 (19:33 -0800)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Fri, 26 Feb 2021 18:56:48 +0000 (18:56 +0000)
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3235

The library for this header initially resided in StandaloneMmPkg
but moved to MdePkg and now this file is a duplicate of the header
file in MdePkg.

This change removes the header file from StandaloneMmPkg. More
details regarding the history of the library transitioning from
StandaloneMmPkg to MdePkg are below.

The following commit removed the library from StandaloneMmPkg:
  d6253d2f9a33 ("StandaloneMmPkg: remove redundant
  StandaloneMmDriverEntryPoint driver", 2019-03-11)

The following commits added the library class & instance to MdePkg:
  7df4764e6a81a ("MdePkg: introduce standalone MM entry point
  library class", 2019-01-14)

  5866d4992396 ("MdePkg: introduce standalone MM entry point
  library implementation", 2019-01-14)

Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Acked-by: Laszlo Ersek <lersek@redhat.com>
StandaloneMmPkg/Include/Library/StandaloneMmDriverEntryPoint.h [deleted file]
StandaloneMmPkg/StandaloneMmPkg.dec

diff --git a/StandaloneMmPkg/Include/Library/StandaloneMmDriverEntryPoint.h b/StandaloneMmPkg/Include/Library/StandaloneMmDriverEntryPoint.h
deleted file mode 100644 (file)
index b72b647..0000000
+++ /dev/null
@@ -1,142 +0,0 @@
-/** @file\r
-  Module entry point library for Standalone MM Drivers.\r
-\r
-Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
-Copyright (c) 2016 - 2021, Arm Limited. All rights reserved.<BR>\r
-\r
-SPDX-License-Identifier: BSD-2-Clause-Patent\r
-\r
-**/\r
-\r
-#ifndef __MODULE_ENTRY_POINT_H__\r
-#define __MODULE_ENTRY_POINT_H__\r
-\r
-///\r
-///Declare the PI Specification Revision that this driver requires to execute correctly.\r
-///\r
-extern CONST UINT32                   _gMmRevision;\r
-\r
-/**\r
-  The entry point of PE/COFF Image for a Standalone MM Driver.\r
-\r
-  This function is the entry point for a Standalone MM Driver.\r
-  This function must call ProcessLibraryConstructorList() and\r
-  ProcessModuleEntryPointList().\r
-  If the return status from ProcessModuleEntryPointList()\r
-  is an error status, then ProcessLibraryDestructorList() must be called.\r
-  The return value from ProcessModuleEntryPointList() is returned.\r
-  If _gDriverUnloadImageCount is greater\r
-  than zero, then an unload handler must be registered for this image and\r
-  the unload handler must invoke ProcessModuleUnloadList().\r
-  If _gUefiDriverRevision is not zero and SystemTable->Hdr.Revision is\r
-  less than _gUefiDriverRevision, then return EFI_INCOMPATIBLE_VERSION.\r
-\r
-  @param  ImageHandle  The image handle of the Standalone MM Driver.\r
-  @param  SystemTable  A pointer to the EFI System Table.\r
-\r
-  @retval  EFI_SUCCESS               The Standalone MM Driver exited normally.\r
-  @retval  EFI_INCOMPATIBLE_VERSION  _gUefiDriverRevision is greater than\r
-                                     SystemTable->Hdr.Revision.\r
-  @retval  Other                     Return value from\r
-                                     ProcessModuleEntryPointList().\r
-\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-_ModuleEntryPoint (\r
-  IN EFI_HANDLE             ImageHandle,\r
-  IN EFI_MM_SYSTEM_TABLE    *MmSystemTable\r
-  );\r
-\r
-\r
-/**\r
-  Required by the EBC compiler and identical in functionality to _ModuleEntryPoint().\r
-\r
-  This function is required to call _ModuleEntryPoint() passing in ImageHandle, and SystemTable.\r
-\r
-  @param  ImageHandle  The image handle of the Standalone MM Driver.\r
-  @param  SystemTable  A pointer to the EFI System Table.\r
-\r
-  @retval  EFI_SUCCESS               The Standalone MM Driver exited normally.\r
-  @retval  EFI_INCOMPATIBLE_VERSION  _gUefiDriverRevision is greater than\r
-                                     SystemTable->Hdr.Revision.\r
-  @retval  Other                     Return value from ProcessModuleEntryPointList().\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-EfiMain (\r
-  IN EFI_HANDLE             ImageHandle,\r
-  IN EFI_MM_SYSTEM_TABLE    *MmSystemTable\r
-  );\r
-\r
-/**\r
-  Auto generated function that calls the library constructors for all of the module's\r
-  dependent libraries.\r
-\r
-  This function must be called by _ModuleEntryPoint().\r
-  This function calls the set of library constructors for the set of library instances\r
-  that a module depends on.  This includes library instances that a module depends on\r
-  directly and library instances that a module depends on indirectly through other libraries.\r
-  This function is auto generated by build tools and those build tools are responsible\r
-  for collecting the set of library instances, determine which ones have constructors,\r
-  and calling the library constructors in the proper order based upon each of the library\r
-  instances own dependencies.\r
-\r
-  @param  ImageHandle  The image handle of the Standalone MM Driver.\r
-  @param  SystemTable  A pointer to the EFI System Table.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-ProcessLibraryConstructorList (\r
-  IN EFI_HANDLE             ImageHandle,\r
-  IN EFI_MM_SYSTEM_TABLE    *MmSystemTable\r
-  );\r
-\r
-\r
-/**\r
-  Auto generated function that calls the library descructors for all of the module's\r
-  dependent libraries.\r
-\r
-  This function may be called by _ModuleEntryPoint() or ExitDriver().\r
-  This function calls the set of library destructors for the set of library instances\r
-  that a module depends on. This includes library instances that a module depends on\r
-  directly and library instances that a module depends on indirectly through other libraries.\r
-  This function is auto generated by build tools and those build tools are responsible for\r
-  collecting the set of library instances, determine which ones have destructors, and calling\r
-  the library destructors in the proper order based upon each of the library instances own dependencies.\r
-\r
-  @param  ImageHandle  The image handle of the Standalone MM Driver.\r
-  @param  SystemTable  A pointer to the EFI System Table.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-ProcessLibraryDestructorList (\r
-  IN EFI_HANDLE             ImageHandle,\r
-  IN EFI_MM_SYSTEM_TABLE    *MmSystemTable\r
-  );\r
-\r
-\r
-/**\r
-  Auto generated function that calls a set of module entry points.\r
-\r
-  This function must be called by _ModuleEntryPoint().\r
-  This function calls the set of module entry points.\r
-  This function is auto generated by build tools and those build tools are responsible\r
-  for collecting the module entry points and calling them in a specified order.\r
-\r
-  @param  ImageHandle  The image handle of the Standalone MM Driver.\r
-  @param  SystemTable  A pointer to the EFI System Table.\r
-\r
-  @retval  EFI_SUCCESS   The Standalone MMDriver executed normally.\r
-  @retval  !EFI_SUCCESS  The Standalone MM Driver failed to execute normally.\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-ProcessModuleEntryPointList (\r
-  IN EFI_HANDLE             ImageHandle,\r
-  IN EFI_MM_SYSTEM_TABLE    *MmSystemTable\r
-  );\r
-\r
-#endif\r
index 36de8d561bf3f621defac327379ed0943f5cb617..0dfed4ee995a8b823d2af0911e4fbd38d2899e45 100644 (file)
@@ -25,9 +25,6 @@
   ##  @libraryclass  Defines a set of interfaces for the MM core entrypoint.\r
   StandaloneMmCoreEntryPoint|Include/Library/StandaloneMmCoreEntryPoint.h\r
 \r
-  ##  @libraryclass  Defines a set of interfaces for the MM driver entrypoint.\r
-  StandaloneMmDriverEntryPoint|Include/Library/StandaloneMmDriverEntryPoint.h\r
-\r
   ##  @libraryclass  Defines a set of interfaces that provides services for\r
   ##                 MM Memory Operation.\r
   MemLib|Include/Library/StandaloneMmMemLib.h\r