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