CpuIo2StandaloneMm.c 802 B

1234567891011121314151617181920212223242526272829303132
  1. /** @file
  2. Produces the SMM CPU I/O Protocol.
  3. Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
  4. Copyright (c) Microsoft Corporation.
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #include <PiMm.h>
  8. #include "CpuIo2Mm.h"
  9. /**
  10. The module Entry Point for Standalone MM CpuIoProtocol driver
  11. @param[in] ImageHandle The firmware allocated handle for the EFI image.
  12. @param[in] SystemTable A pointer to the EFI System Table.
  13. @retval EFI_SUCCESS The entry point is executed successfully.
  14. @retval Other Some error occurs when executing this entry point.
  15. **/
  16. EFI_STATUS
  17. EFIAPI
  18. StandaloneMmCpuIo2Initialize (
  19. IN EFI_HANDLE ImageHandle,
  20. IN EFI_MM_SYSTEM_TABLE *SystemTable
  21. )
  22. {
  23. return CommonCpuIo2Initialize ();
  24. }