summaryrefslogtreecommitdiffstats
path: root/include/spl.h
diff options
context:
space:
mode:
authorHeiko Schocher <hs@denx.de>2018-12-05 11:29:54 +0100
committerTom Rini <trini@konsulko.com>2018-12-07 08:13:51 -0500
commit8fb2391ea68f979f559dadd97c73201c957fae5d (patch)
treeb008f9a2b4e96326b57a69bf8cce406abc4afe01 /include/spl.h
parent8a15bdb0408a6a0513f03cdec594dbaaddfa2c00 (diff)
downloadu-boot-8fb2391ea68f979f559dadd97c73201c957fae5d.tar.gz
u-boot-8fb2391ea68f979f559dadd97c73201c957fae5d.tar.xz
u-boot-8fb2391ea68f979f559dadd97c73201c957fae5d.zip
spl/tpl: change banner into upper case
commit d6330064634a ("spl: Add a define for SPL_TPL_PROMPT") changes the SPL/TPL banner from upper case into lower case. As SPL and TPL are three-letter acronyms and they are written in upper case, change it back to upper case. Signed-off-by: Heiko Schocher <hs@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/spl.h')
-rw-r--r--include/spl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/spl.h b/include/spl.h
index ee92832f0a..ff4e6277d3 100644
--- a/include/spl.h
+++ b/include/spl.h
@@ -52,9 +52,9 @@ static inline bool u_boot_first_phase(void)
/* A string name for SPL or TPL */
#ifdef CONFIG_SPL_BUILD
# ifdef CONFIG_TPL_BUILD
-# define SPL_TPL_NAME "tpl"
+# define SPL_TPL_NAME "TPL"
# else
-# define SPL_TPL_NAME "spl"
+# define SPL_TPL_NAME "SPL"
# endif
# define SPL_TPL_PROMPT SPL_TPL_NAME ": "
#else