Skip to content

Commit

Permalink
Update for AcpiInstallTable memory types.
Browse files Browse the repository at this point in the history
Physical/virtual address flags were reversed.
  • Loading branch information
acpibob committed Jun 16, 2015
1 parent 1a8ec7b commit 3f78b7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/components/tables/tbxfload.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,11 +313,11 @@ AcpiInstallTable (

if (Physical)
{
Flags = ACPI_TABLE_ORIGIN_EXTERNAL_VIRTUAL;
Flags = ACPI_TABLE_ORIGIN_INTERNAL_PHYSICAL;
}
else
{
Flags = ACPI_TABLE_ORIGIN_INTERNAL_PHYSICAL;
Flags = ACPI_TABLE_ORIGIN_EXTERNAL_VIRTUAL;
}

Status = AcpiTbInstallStandardTable (Address, Flags,
Expand Down

0 comments on commit 3f78b7f

Please sign in to comment.