QemuFwCfgAcpiPlatform.c 660 B

123456789101112131415161718192021222324252627282930313233
  1. /** @file
  2. OVMF ACPI Platform Driver using QEMU's fw-cfg interface
  3. Copyright (C) 2015, Red Hat, Inc.
  4. Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR>
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #include "AcpiPlatform.h"
  8. /**
  9. Effective entrypoint of QEMU fw-cfg Acpi Platform driver.
  10. @param ImageHandle
  11. @param SystemTable
  12. @return EFI_SUCCESS
  13. @return EFI_LOAD_ERROR
  14. @return EFI_OUT_OF_RESOURCES
  15. **/
  16. EFI_STATUS
  17. EFIAPI
  18. InstallAcpiTables (
  19. IN EFI_ACPI_TABLE_PROTOCOL *AcpiTable
  20. )
  21. {
  22. EFI_STATUS Status;
  23. Status = InstallQemuFwCfgTables (AcpiTable);
  24. return Status;
  25. }