soc/amd/noncar/memmap.c: Fix formatted print

Fixes building with clang.

Change-Id: I7027f3681e18b8ca0d2f0c899412806082846463
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63050
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Arthur Heymans 2022-03-23 22:11:37 +01:00 committed by Felix Held
parent 4401a9188b
commit 0212cd09d3
1 changed files with 1 additions and 1 deletions

View File

@ -64,5 +64,5 @@ void bert_reserved_region(void **start, size_t *size)
{ {
*start = cbmem_add(CBMEM_ID_ACPI_BERT, CONFIG_ACPI_BERT_SIZE); *start = cbmem_add(CBMEM_ID_ACPI_BERT, CONFIG_ACPI_BERT_SIZE);
*size = CONFIG_ACPI_BERT_SIZE; *size = CONFIG_ACPI_BERT_SIZE;
printk(BIOS_INFO, "Reserved BERT region base: %p, size: 0x%lx\n", *start, *size); printk(BIOS_INFO, "Reserved BERT region base: %p, size: 0x%zx\n", *start, *size);
} }