acpi: drop unused parameter from acpi_soc_fill_bert
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ic354824468f016a7857c6990024ae87db6fd00bf Reviewed-on: https://review.coreboot.org/c/coreboot/+/55052 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Lance Zhao
This commit is contained in:
@ -1565,7 +1565,7 @@ bool __weak acpi_is_boot_error_src_present(void)
|
||||
return false;
|
||||
}
|
||||
|
||||
__weak void acpi_soc_fill_bert(acpi_bert_t *bert, void **region, size_t *length) {}
|
||||
__weak void acpi_soc_fill_bert(void **region, size_t *length) {}
|
||||
|
||||
unsigned long __weak fw_cfg_acpi_tables(unsigned long start)
|
||||
{
|
||||
@ -1815,7 +1815,7 @@ unsigned long write_acpi_tables(unsigned long start)
|
||||
size_t size;
|
||||
printk(BIOS_DEBUG, "ACPI: * BERT\n");
|
||||
bert = (acpi_bert_t *) current;
|
||||
acpi_soc_fill_bert(bert, ®ion, &size);
|
||||
acpi_soc_fill_bert(®ion, &size);
|
||||
acpi_write_bert(bert, (uintptr_t)region, size);
|
||||
if (bert->header.length >= sizeof(acpi_bert_t)) {
|
||||
current += bert->header.length;
|
||||
|
Reference in New Issue
Block a user