From 44705c6e5e5075f450d6acaa470a04b620deb13f Mon Sep 17 00:00:00 2001 From: Marshall Dawson Date: Tue, 4 Sep 2018 13:47:15 -0600 Subject: x86/acpi: Add BERT to the revision table Add the proper table revision level for the Boot Error Record Table. BUG=b:65446699 TEST=inspect BERT region, and dmesg, on full patch stack. Use test data plus a failing Grunt system. Change-Id: Ib4596fe8c0dd2a4e2e98df3a1bb60803c48d0256 Signed-off-by: Marshall Dawson Reviewed-on: https://review.coreboot.org/28471 Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) --- src/arch/x86/acpi.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/arch/x86/acpi.c b/src/arch/x86/acpi.c index 0701bbe8fb..d334eb3e66 100644 --- a/src/arch/x86/acpi.c +++ b/src/arch/x86/acpi.c @@ -1296,6 +1296,8 @@ int get_acpi_table_revision(enum acpi_tables table) return 1; case NHLT: return 5; + case BERT: + return 1; default: return -1; } -- cgit v1.2.3