OvmfPkg: avoid including AcpiPlatformLib twice

Signed-off-by: Corvin Köhne <corvink@FreeBSD.org>
Acked-by: Peter Grehan <grehan@freebsd.org>
This commit is contained in:
Corvin Köhne 2023-06-21 09:31:12 +02:00 committed by mergify[bot]
parent 8f63f4143d
commit f5d851673d
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,9 @@
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef ACPI_PLATFORM_LIB_H_
#define ACPI_PLATFORM_LIB_H_
#include <Protocol/AcpiTable.h>
/**
@ -47,3 +50,5 @@ InstallAcpiTablesFromRsdp (
IN EFI_ACPI_TABLE_PROTOCOL *AcpiProtocol,
IN EFI_ACPI_2_0_ROOT_SYSTEM_DESCRIPTION_POINTER *Rsdp
);
#endif