From 4ddd47697e58c50bd89aa4f77a0b652f2d1fc462 Mon Sep 17 00:00:00 2001 From: Marc Jones Date: Tue, 21 Aug 2018 10:50:57 -0600 Subject: x86/acpi: Update MADT table version Update the MADT table version to sync with the FADT table version. All current coreboot FADT tables are set to ACPI_FADT_REV_ACPI_3_0 and the MADT should be set to match. This error was found by running FWTS: FAILED [MEDIUM] SPECMADTFADTRevisions: Test 2, MADT revision is not in sync with the FADT revision; MADT 1 expects FADT 3.0 but found 4.0 instead. BUG=b:112476331 TEST-Run FWTS Change-Id: If5ef53794ff80dd21f13c247d17c2a0e9f9068f2 Signed-off-by: Marc Jones Reviewed-on: https://review.coreboot.org/28256 Tested-by: build bot (Jenkins) Reviewed-by: Marshall Dawson Reviewed-by: Martin Roth --- src/arch/x86/acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch') diff --git a/src/arch/x86/acpi.c b/src/arch/x86/acpi.c index e6d8ee054a..012fe186e7 100644 --- a/src/arch/x86/acpi.c +++ b/src/arch/x86/acpi.c @@ -1263,7 +1263,7 @@ int get_acpi_table_revision(enum acpi_tables table) case FADT: return ACPI_FADT_REV_ACPI_3_0; case MADT: /* ACPI 1.0/2.0: 1, ACPI 3.0: 2, ACPI 4.0: 3 */ - return 1; + return 2; case MCFG: return 1; case TCPA: -- cgit v1.2.3