mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
x86: mrc: Correct SPL debug message
SPL printf() does not normally support %#x so just use %x instead. Hex is expected in U-Boot anyway. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
b194e432c3
commit
392720b429
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue