From 7c6f304a2eb855cf2d71ca0638d4f3c72f436fcd Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Thu, 27 Mar 2014 23:50:54 +0000 Subject: Import ACPICA 20140325. --- source/components/tables/tbxface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/components/tables/tbxface.c') diff --git a/source/components/tables/tbxface.c b/source/components/tables/tbxface.c index dc6374bb091e5..26ee44bd9ed4f 100644 --- a/source/components/tables/tbxface.c +++ b/source/components/tables/tbxface.c @@ -262,7 +262,7 @@ AcpiGetTableHeader ( { if ((AcpiGbl_RootTableList.Tables[i].Flags & ACPI_TABLE_ORIGIN_MASK) == - ACPI_TABLE_ORIGIN_MAPPED) + ACPI_TABLE_ORIGIN_INTERNAL_PHYSICAL) { Header = AcpiOsMapMemory ( AcpiGbl_RootTableList.Tables[i].Address, @@ -345,7 +345,7 @@ AcpiGetTable ( continue; } - Status = AcpiTbVerifyTable (&AcpiGbl_RootTableList.Tables[i]); + Status = AcpiTbValidateTable (&AcpiGbl_RootTableList.Tables[i]); if (ACPI_SUCCESS (Status)) { *OutTable = AcpiGbl_RootTableList.Tables[i].Pointer; @@ -406,7 +406,7 @@ AcpiGetTableByIndex ( { /* Table is not mapped, map it */ - Status = AcpiTbVerifyTable (&AcpiGbl_RootTableList.Tables[TableIndex]); + Status = AcpiTbValidateTable (&AcpiGbl_RootTableList.Tables[TableIndex]); if (ACPI_FAILURE (Status)) { (void) AcpiUtReleaseMutex (ACPI_MTX_TABLES); -- cgit v1.2.3