DxeStandaloneMmAcpiTimerLib.h 488 B

1234567891011121314151617181920212223
  1. /** @file
  2. Header file internal to ACPI TimerLib.
  3. Copyright (c) Microsoft Corporation.
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _DXE_STANDALONE_MM_ACPI_TIMER_LIB_H_
  7. #define _DXE_STANDALONE_MM_ACPI_TIMER_LIB_H_
  8. /**
  9. The constructor function enables ACPI IO space, and caches PerformanceCounterFrequency.
  10. @retval EFI_SUCCESS The constructor always returns RETURN_SUCCESS.
  11. **/
  12. EFI_STATUS
  13. CommonAcpiTimerLibConstructor (
  14. VOID
  15. );
  16. #endif