Marshall Dawson has uploaded this change for review. ( https://review.coreboot.org/28471
Change subject: x86/acpi: add BERT to the revision table ......................................................................
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 --- M src/arch/x86/acpi.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/28471/1
diff --git a/src/arch/x86/acpi.c b/src/arch/x86/acpi.c index 0701bbe..d334eb3 100644 --- a/src/arch/x86/acpi.c +++ b/src/arch/x86/acpi.c @@ -1296,6 +1296,8 @@ return 1; case NHLT: return 5; + case BERT: + return 1; default: return -1; }