diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-03-23 22:21:38 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-25 19:53:28 +0000 |
commit | d400d497fbcaf976fd9c3e2042b1f67f865681a5 (patch) | |
tree | 6cf4bbdf461b0c657b32e57eff82136a28c823c3 /src/soc/intel/jasperlake/meminit.c | |
parent | 0212cd09d34de6a327927c4d95f1750fe256c224 (diff) |
soc/intel/*/meminit.c: Fix formatted print
This fixes building with clang.
Change-Id: If2686b0938d34cd66393eb14205c5c8a5b3ba98b
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63052
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/intel/jasperlake/meminit.c')
-rw-r--r-- | src/soc/intel/jasperlake/meminit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/jasperlake/meminit.c b/src/soc/intel/jasperlake/meminit.c index 9ec1ffa82d..9cf5ecba67 100644 --- a/src/soc/intel/jasperlake/meminit.c +++ b/src/soc/intel/jasperlake/meminit.c @@ -12,7 +12,7 @@ static void spd_read_from_cbfs(const struct spd_info *spd_info, uintptr_t *spd_d { size_t spd_index = spd_info->spd_spec.spd_index; - printk(BIOS_DEBUG, "SPD INDEX = %lu\n", spd_index); + printk(BIOS_DEBUG, "SPD INDEX = %zu\n", spd_index); /* Memory leak is ok since we have memory mapped boot media */ assert(CONFIG(BOOT_DEVICE_MEMORY_MAPPED)); |