diff options
author | Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com> | 2019-01-09 20:27:09 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-15 15:28:52 -0500 |
commit | 7828e3cf70513d7bd3a2bcefd52802633c78affd (patch) | |
tree | 33d8949c9d651e52663f83d2cdf8c99be977e300 /drivers/serial/Kconfig | |
parent | bb5835bc018dc8d7cc4d7abf0ef0521be5093985 (diff) | |
download | u-boot-7828e3cf70513d7bd3a2bcefd52802633c78affd.zip u-boot-7828e3cf70513d7bd3a2bcefd52802633c78affd.tar.gz u-boot-7828e3cf70513d7bd3a2bcefd52802633c78affd.tar.bz2 |
drivers: serial: DEBUG_UART_SKIP_INIT depends on DEBUG_UART
DEBUG_UART_SKIP_INIT is used only by debug UART and thus should depend
on DEBUG_UART.
Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/serial/Kconfig')
-rw-r--r-- | drivers/serial/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index b7ff296..e67ea52 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -442,6 +442,7 @@ config DEBUG_UART_ANNOUNCE config DEBUG_UART_SKIP_INIT bool "Skip UART initialization" + depends on DEBUG_UART help Select this if the UART you want to use for debug output is already initialized by the time U-Boot starts its execution. |