summaryrefslogtreecommitdiffstats
path: root/src/mainboard/aopen/dxplplusu/fadt.c
diff options
context:
space:
mode:
authorMarc Jones <marcj303@gmail.com>2018-08-22 18:59:26 -0600
committerMartin Roth <martinroth@google.com>2018-08-27 15:49:32 +0000
commitf9ea7edea856a63997ad07ae57af49f4cc179495 (patch)
tree6e3c7be4b26e9e11edeaa3aa1936d4384f14e68e /src/mainboard/aopen/dxplplusu/fadt.c
parent93a51766aaca50cfbcbedca780e935ce66c12d73 (diff)
downloadcoreboot-f9ea7edea856a63997ad07ae57af49f4cc179495.tar.gz
coreboot-f9ea7edea856a63997ad07ae57af49f4cc179495.tar.bz2
coreboot-f9ea7edea856a63997ad07ae57af49f4cc179495.zip
update all FADT version 3.0 to use the get tables function
Most FADT report using ACPIv3 FADT table. Using the get revision function keeps the table versions in sync. Change-Id: Ie554faf1be65c7034dd0836f0029cdc79eae1aed Signed-off-by: Marc Jones <marcj303@gmail.com> Reviewed-on: https://review.coreboot.org/28277 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/aopen/dxplplusu/fadt.c')
-rw-r--r--src/mainboard/aopen/dxplplusu/fadt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/aopen/dxplplusu/fadt.c b/src/mainboard/aopen/dxplplusu/fadt.c
index 418d547ca373..9e44b85d6ccf 100644
--- a/src/mainboard/aopen/dxplplusu/fadt.c
+++ b/src/mainboard/aopen/dxplplusu/fadt.c
@@ -37,7 +37,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
memset((void *) fadt, 0, sizeof(acpi_fadt_t));
memcpy(header->signature, "FACP", 4);
header->length = sizeof(acpi_fadt_t);
- header->revision = 4;
+ header->revision = get_acpi_table_revision(FADT);
memcpy(header->oem_id, OEM_ID, 6);
memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
memcpy(header->asl_compiler_id, ASLC, 4);