diff mbox

[U-Boot] serial, kconfig: fix menutext

Message ID 1498018990-14739-1-git-send-email-hs@denx.de
State Accepted
Commit 0424990c1f2cb2071b88c138e8c078bf3443708e
Delegated to: Tom Rini
Headers show

Commit Message

Heiko Schocher June 21, 2017, 4:23 a.m. UTC
fix menutext for the options SPL_DM_SERIAL and TPL_DM_SERIAL.
Both have the same text as DM_SERIAL, which is
confusing.

Signed-off-by: Heiko Schocher <hs@denx.de>
---

 drivers/serial/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Stefan Roese June 21, 2017, 4:51 a.m. UTC | #1
On 21.06.2017 06:23, Heiko Schocher wrote:
> fix menutext for the options SPL_DM_SERIAL and TPL_DM_SERIAL.
> Both have the same text as DM_SERIAL, which is
> confusing.
> 
> Signed-off-by: Heiko Schocher <hs@denx.de>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan
Tom Rini June 24, 2017, 10:17 p.m. UTC | #2
On Wed, Jun 21, 2017 at 06:23:10AM +0200, Heiko Schocher wrote:

> fix menutext for the options SPL_DM_SERIAL and TPL_DM_SERIAL.
> Both have the same text as DM_SERIAL, which is
> confusing.
> 
> Signed-off-by: Heiko Schocher <hs@denx.de>
> Reviewed-by: Stefan Roese <sr@denx.de>

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

Patch

diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index 5832066..8ab5ece 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -65,7 +65,7 @@  config DM_SERIAL
 	  defined in include/serial.h.
 
 config SPL_DM_SERIAL
-	bool "Enable Driver Model for serial drivers"
+	bool "Enable Driver Model for serial drivers in SPL"
 	depends on DM_SERIAL
 	default y if SPL && DM_SERIAL
 	help
@@ -75,7 +75,7 @@  config SPL_DM_SERIAL
 	  defined in include/serial.h.
 
 config TPL_DM_SERIAL
-	bool "Enable Driver Model for serial drivers"
+	bool "Enable Driver Model for serial drivers in TPL"
 	depends on DM_SERIAL
 	default y if TPL && DM_SERIAL
 	help