From: Simon Glass Date: Thu, 14 Jan 2021 03:29:50 +0000 (-0700) Subject: display_options: Use USE_TINY_PRINTF for SPL check X-Git-Tag: v2021.10~343^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac42fe539ca991543c888e261e62b4187ec9bbee;p=platform%2Fkernel%2Fu-boot.git 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: Simon Glass --- diff --git a/lib/display_options.c b/lib/display_options.c index b2025ee..cd48998 100644 --- a/lib/display_options.c +++ b/lib/display_options.c @@ -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; }