summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-01-13 20:29:50 -0700
committerTom Rini <trini@konsulko.com>2021-01-27 17:03:16 -0500
commitac42fe539ca991543c888e261e62b4187ec9bbee (patch)
tree7f32b803063478b42ccd34ee1a5f4716ae837863 /lib
parent0a2aaab0b678fd1778ff2fc59d0770fc82995532 (diff)
downloadu-boot-ac42fe539ca991543c888e261e62b4187ec9bbee.tar.gz
u-boot-ac42fe539ca991543c888e261e62b4187ec9bbee.tar.xz
u-boot-ac42fe539ca991543c888e261e62b4187ec9bbee.zip
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 <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/display_options.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/display_options.c b/lib/display_options.c
index b2025eeb5c..cd48998b6d 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;
}