aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/lib/mrccache.c
diff options
context:
space:
mode:
authorTom Rini2023-05-11 08:40:33 -0400
committerTom Rini2023-05-11 08:40:33 -0400
commite94fbdd2729fdcd570035d43f67adda8e0dfc115 (patch)
treefc4d5d6f989618994e0af5bb61f9918e4c8a7478 /arch/x86/lib/mrccache.c
parent0a9a4384c1483a88776bca38e28f09be51161034 (diff)
parentb982f89c583c6c03f4d1f94d29991ccf691a0f7c (diff)
Merge https://source.denx.de/u-boot/custodians/u-boot-x86
- Various fixes for Google chromebooks - Various minor enhancements for coreboot
Diffstat (limited to 'arch/x86/lib/mrccache.c')
-rw-r--r--arch/x86/lib/mrccache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/mrccache.c b/arch/x86/lib/mrccache.c
index 38632e513fc..2f6f6880003 100644
--- a/arch/x86/lib/mrccache.c
+++ b/arch/x86/lib/mrccache.c
@@ -303,7 +303,7 @@ static int mrccache_save_type(enum mrc_type_t type)
mrc = &gd->arch.mrc[type];
if (!mrc->len)
return 0;
- log_debug("Saving %#x bytes of MRC output data type %d to SPI flash\n",
+ log_debug("Saving %x bytes of MRC output data type %d to SPI flash\n",
mrc->len, type);
ret = mrccache_get_region(type, &sf, &entry);
if (ret)