]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Kconfig: disambiguate config names for tiny printf
authorThomas Hebb <tommyhebb@gmail.com>
Sun, 10 Nov 2019 16:23:53 +0000 (08:23 -0800)
committerTom Rini <trini@konsulko.com>
Tue, 3 Dec 2019 13:43:23 +0000 (08:43 -0500)
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>
lib/Kconfig

index b8a8509d720faa45ca569c1233a5c7ff8ef4c5d3..55dedcbcdd2b1373a8643d93891dc57831e65714 100644 (file)
@@ -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