Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/73490 )
Change subject: drivers/intel/fsp2_0: Print `mrc_cache` size in decimal ......................................................................
drivers/intel/fsp2_0: Print `mrc_cache` size in decimal
This patch updates the print msg of mrc_cache size from hex to decimal for easier understanding while debugging the issue.
TEST=Able to build and boot google/rex.
Without this patch:
[SPEW ] MRC cache found, size ee75
With this patch:
[SPEW ] MRC cache found, size 61045 bytes
Change-Id: I69feeb36423e47a5992c9f27d9a7042803a492cd Signed-off-by: Subrata Banik subratabanik@google.com --- M src/drivers/intel/fsp2_0/memory_init.c 1 file changed, 24 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/73490/1
diff --git a/src/drivers/intel/fsp2_0/memory_init.c b/src/drivers/intel/fsp2_0/memory_init.c index 740b9c6..bb8249f 100644 --- a/src/drivers/intel/fsp2_0/memory_init.c +++ b/src/drivers/intel/fsp2_0/memory_init.c @@ -86,7 +86,7 @@ /* MRC cache found */ arch_upd->NvsBufferPtr = (uintptr_t)data;
- printk(BIOS_SPEW, "MRC cache found, size %zx\n", mrc_size); + printk(BIOS_SPEW, "MRC cache found, size %ld bytes\n", mrc_size); }
static enum cb_err check_region_overlap(const struct memranges *ranges,