summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-15 02:59:54 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-15 02:59:54 +0000
commit89b11f05575dc080929771cf3eb959d9561bfe13 (patch)
tree5fbd54498116fe9c1519860424fe31aa9abc0e60 /MdePkg
parent311004b2389692e33526e5fcce0b4f17b3417759 (diff)
downloadedk2-platforms-89b11f05575dc080929771cf3eb959d9561bfe13.tar.xz
Correct the conflict EFI_ACPI_GET_ACPI_TABLE to EFI_ACPI_GET_ACPI_TABLE2
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9771 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h b/MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h
index ab90b3499a..fce45c0fe6 100644
--- a/MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h
+++ b/MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h
@@ -81,7 +81,7 @@ EFI_STATUS
**/
typedef
EFI_STATUS
-(EFIAPI *EFI_ACPI_GET_ACPI_TABLE)(
+(EFIAPI *EFI_ACPI_GET_ACPI_TABLE2)(
IN UINTN Index,
OUT EFI_ACPI_SDT_HEADER **Table,
OUT EFI_ACPI_TABLE_VERSION *Version,
@@ -246,7 +246,10 @@ typedef struct _EFI_ACPI_SDT_PROTOCOL {
/// Specifies the ACPI version supported by this protocol.
///
EFI_ACPI_TABLE_VERSION AcpiVersion;
- EFI_ACPI_GET_ACPI_TABLE GetAcpiTable;
+ //
+ // EFI_ACPI_GET_ACPI_TABLE2 not in public UEFI specification.
+ //
+ EFI_ACPI_GET_ACPI_TABLE2 GetAcpiTable;
EFI_ACPI_REGISTER_NOTIFY RegisterNotify;
EFI_ACPI_OPEN Open;
EFI_ACPI_OPEN_SDT OpenSdt;