diff options
author | Heiko Schocher <hs@denx.de> | 2017-06-21 04:23:10 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-23 14:38:09 (GMT) |
commit | 0424990c1f2cb2071b88c138e8c078bf3443708e (patch) | |
tree | aa15e6a2b5d8d3bae297f5d628c70bdebdb902dd /drivers | |
parent | 5353953372b4d673d9fcc7d616ae9fe747dd14ae (diff) | |
download | u-boot-0424990c1f2cb2071b88c138e8c078bf3443708e.tar.xz |
serial, kconfig: fix menutext
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/serial/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 58fc7cd..c64f4a6 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 |