soc/intel/adl/bootblock/report_platform.c: Use the correct format
Change-Id: I54c40434f44621c4ea6564ac9c87c5b2fa083b5d Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/62176 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
parent
4998aaee23
commit
138db0601d
|
@ -150,7 +150,7 @@ static void report_cache_info(void)
|
||||||
printk(BIOS_INFO, "Associativity = %zd Partitions = %zd Line Size = %zd Sets = %zd\n",
|
printk(BIOS_INFO, "Associativity = %zd Partitions = %zd Line Size = %zd Sets = %zd\n",
|
||||||
info.num_ways, info.physical_partitions, info.line_size, info.num_sets);
|
info.num_ways, info.physical_partitions, info.line_size, info.num_sets);
|
||||||
|
|
||||||
printk(BIOS_INFO, "Cache size = %ld MiB\n", get_cache_size(&info)/MiB);
|
printk(BIOS_INFO, "Cache size = %zu MiB\n", get_cache_size(&info)/MiB);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void report_cpu_info(void)
|
static void report_cpu_info(void)
|
||||||
|
|
Loading…
Reference in New Issue