diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2018-09-04 13:47:15 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-09-07 14:50:16 +0000 |
commit | 44705c6e5e5075f450d6acaa470a04b620deb13f (patch) | |
tree | 729972fbfae08c44bae42a55074625aa564f0a0b | |
parent | 991467da4d42fd5c66a1bb693d5ecaacd651204a (diff) | |
download | coreboot-44705c6e5e5075f450d6acaa470a04b620deb13f.tar.xz |
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 <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/28471
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/arch/x86/acpi.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |