diff options
author | Thomas Hebb | 2019-11-10 08:23:53 -0800 |
---|---|---|
committer | Tom Rini | 2019-12-03 08:43:23 -0500 |
commit | 37ef1774d445a3275f2ff40be05c8623de50e7d4 (patch) | |
tree | b6c6032050babe16e70b63ad81f21e9e699099fb | |
parent | 1297989804d66c8db92efbf9fa2e6cc76965a943 (diff) |
Kconfig: disambiguate config names for tiny printf
27084c03d36a ("spl: Allow tiny printf() to be controlled in SPL and
TPL") split this option in two for TPL and SPL, but didn't change the
Kconfig names, making them hard to set quickly.
Signed-off-by: Thomas Hebb <tommyhebb@gmail.com>
-rw-r--r-- | lib/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index b8a8509d720..55dedcbcdd2 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -96,7 +96,7 @@ config SYS_HZ set to 1000. config SPL_USE_TINY_PRINTF - bool "Enable tiny printf() version" + bool "Enable tiny printf() version in SPL" depends on SPL default y help @@ -108,7 +108,7 @@ config SPL_USE_TINY_PRINTF The supported format specifiers are %c, %s, %u/%d and %x. config TPL_USE_TINY_PRINTF - bool "Enable tiny printf() version" + bool "Enable tiny printf() version in TPL" depends on TPL default y if SPL_USE_TINY_PRINTF help |