]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
x86: mrc: Correct SPL debug message
authorSimon Glass <sjg@chromium.org>
Thu, 4 May 2023 22:50:53 +0000 (16:50 -0600)
committerBin Meng <bmeng@tinylab.org>
Thu, 11 May 2023 02:25:29 +0000 (10:25 +0800)
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>
arch/x86/lib/mrccache.c

index 38632e513fced9b4407cbb241d226faea055e73f..2f6f6880003ee18b224809af30226ebec9b6a33d 100644 (file)
@@ -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)