diff mbox series

[U-Boot,1/3] Kconfig: disambiguate config names for tiny printf

Message ID c57aff33fddb3de73bb24fb5db294632ce013176.1573403030.git.tommyhebb@gmail.com
State Accepted
Commit 37ef1774d445a3275f2ff40be05c8623de50e7d4
Delegated to: Tom Rini
Headers show
Series [U-Boot,1/3] Kconfig: disambiguate config names for tiny printf | expand

Commit Message

Tom Hebb Nov. 10, 2019, 4:23 p.m. UTC
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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini Dec. 4, 2019, 4:01 a.m. UTC | #1
On Sun, Nov 10, 2019 at 08:23:53AM -0800, Thomas Hebb wrote:

> 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>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/lib/Kconfig b/lib/Kconfig
index b8a8509d72..55dedcbcdd 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