提交 ac42fe53 编写于 作者: S Simon Glass 提交者: Tom Rini

display_options: Use USE_TINY_PRINTF for SPL check

At present this code uses a simple printf() format if running in SPL. But
SPL can use the full printf. Use USE_TINY_PRINTF instead.
Signed-off-by: NSimon Glass <sjg@chromium.org>
上级 0a2aaab0
......@@ -169,11 +169,10 @@ int print_buffer(ulong addr, const void *data, uint width, uint count,
x = lb.us[i] = *(volatile uint16_t *)data;
else
x = lb.uc[i] = *(volatile uint8_t *)data;
#if defined(CONFIG_SPL_BUILD)
printf(" %x", (uint)x);
#else
printf(" %0*lx", width * 2, x);
#endif
if (CONFIG_IS_ENABLED(USE_TINY_PRINTF))
printf(" %x", (uint)x);
else
printf(" %0*lx", width * 2, x);
data += width;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册