Rename AcGetAcpiTable() to AcGetAcpiDescriptionPointer()

This commit is contained in:
2024-02-02 22:04:58 +01:00
parent 58a1fef3ad
commit 082568ae10
3 changed files with 7 additions and 7 deletions

View File

@@ -100,7 +100,7 @@ typedef VOID (*PBL_XT_BOOT_MENU)();
typedef VOID (XTAPI *PBL_ZERO_MEMORY)(OUT PVOID Destination, IN SIZE_T Length);
/* Module protocols routine pointers */
typedef EFI_STATUS (*PBL_ACPI_GET_ACPI_TABLE)(OUT PVOID *AcpiTable);
typedef EFI_STATUS (*PBL_ACPI_GET_ACPI_DESCRIPTION_POINTER)(OUT PVOID *AcpiTable);
typedef EFI_STATUS (*PBL_ACPI_GET_RSDP_TABLE)(OUT PVOID *AcpiTable);
typedef EFI_STATUS (*PBL_ACPI_GET_XSDP_TABLE)(OUT PVOID *AcpiTable);
typedef EFI_STATUS (*PBL_BOOTPROTO_BOOT_SYSTEM)(IN PXTBL_BOOT_PARAMETERS Parameters);
@@ -257,7 +257,7 @@ typedef struct _XTBL_FRAMEBUFFER_INFORMATION
/* XTLDR ACPI protocol structure */
typedef struct _XTBL_ACPI_PROTOCOL
{
PBL_ACPI_GET_ACPI_TABLE GetAcpiTable;
PBL_ACPI_GET_ACPI_DESCRIPTION_POINTER GetAcpiDescriptionPointer;
PBL_ACPI_GET_RSDP_TABLE GetRsdpTable;
PBL_ACPI_GET_XSDP_TABLE GetXsdpTable;
} XTBL_ACPI_PROTOCOL, *PXTBL_ACPI_PROTOCOL;