summaryrefslogtreecommitdiff
path: root/src/acpi
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-05-28 15:54:21 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-06-01 12:49:26 +0000
commit35efba2bc06921d68ae4a345ab611f5d3ac3d5d1 (patch)
tree14536f652d3f3fbc819990d0af03d1d55282f654 /src/acpi
parent67d958b64078216546e32d12ff8cae422e14c622 (diff)
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
Diffstat (limited to 'src/acpi')
-rw-r--r--src/acpi/acpi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/acpi/acpi.c b/src/acpi/acpi.c
index 0874e6e21f..185825bb5f 100644
--- a/src/acpi/acpi.c
+++ b/src/acpi/acpi.c
@@ -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, &region, &size);
+ acpi_soc_fill_bert(&region, &size);
acpi_write_bert(bert, (uintptr_t)region, size);
if (bert->header.length >= sizeof(acpi_bert_t)) {
current += bert->header.length;