acpi: Fix BERT size_t printf format error

Fix compilation on GCC 10.2.1 and address the underlying issue. The
printf format specifier for a size_t type is z.

Change-Id: Ieb1db6c0c3eb4947bd3617e418bac238b70ec08f
Signed-off-by: Benjamin Doron <benjamin.doron00@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50051
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Benjamin Doron 2021-02-05 00:23:46 +00:00 committed by Patrick Georgi
parent dd754fce72
commit 07dda337b7
2 changed files with 2 additions and 2 deletions

View File

@ -200,7 +200,7 @@ void *new_cper_fw_error_crashlog(acpi_generic_error_status_t *status, size_t cl_
{ {
void *cl_data = bert_allocate_storage(cl_size); void *cl_data = bert_allocate_storage(cl_size);
if (!cl_data) { if (!cl_data) {
printk(BIOS_ERR, "Error: Crashlog entry (size %lu) would exceed available region\n", printk(BIOS_ERR, "Error: Crashlog entry (size %zu) would exceed available region\n",
cl_size); cl_size);
return NULL; return NULL;
} }

View File

@ -63,7 +63,7 @@ void bert_reserved_region(void **start, size_t *size)
*start = cbmem_add(CBMEM_ID_ACPI_BERT, BERT_REGION_MAX_SIZE); *start = cbmem_add(CBMEM_ID_ACPI_BERT, BERT_REGION_MAX_SIZE);
*size = BERT_REGION_MAX_SIZE; *size = BERT_REGION_MAX_SIZE;
printk(BIOS_DEBUG, "Reserving BERT start %lx, size %lx\n", (uintptr_t)*start, *size); printk(BIOS_DEBUG, "Reserving BERT start %lx, size %zx\n", (uintptr_t)*start, *size);
} }
void fill_postcar_frame(struct postcar_frame *pcf) void fill_postcar_frame(struct postcar_frame *pcf)