Attention is currently required from: Arthur Heymans, Lean Sheng Tan.
Hello Arthur Heymans, Lean Sheng Tan,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/76158?usp=email
to review the following change.
Change subject: acpi: Set checksum for SPCR table ......................................................................
acpi: Set checksum for SPCR table
This was missed recently when adding the table.
Change-Id: I0086a3e8c5b3a06da9edf40a7a288c534fc5a6b2 Signed-off-by: Nico Huber nico.h@gmx.de Fixes: commit 90464073e4a1 (acpi: Add SPCR table) --- M src/acpi/acpi.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/76158/1
diff --git a/src/acpi/acpi.c b/src/acpi/acpi.c index e0e72f7..267a989 100644 --- a/src/acpi/acpi.c +++ b/src/acpi/acpi.c @@ -1866,6 +1866,8 @@ spcr->language = 0; spcr->pci_did = 0xffff; spcr->pci_vid = 0xffff; + + header->checksum = acpi_checksum((void *)spcr, header->length); }
unsigned long __weak fw_cfg_acpi_tables(unsigned long start)