From: Simon Goldschmidt Date: Wed, 9 Jan 2019 19:27:09 +0000 (+0100) Subject: drivers: serial: DEBUG_UART_SKIP_INIT depends on DEBUG_UART X-Git-Tag: baikal/mips/sdk5.9~1169^2~15 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=9f4475ea663464eb43c70c645387c84b6da5b858;p=uboot.git 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 Reviewed-by: Simon Glass --- diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index b7ff2960ab..e67ea52338 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.