From mboxrd@z Thu Jan 1 00:00:00 1970 From: Angelo Dureghello Date: Tue, 9 Oct 2018 23:43:07 +0200 Subject: [U-Boot] [PATCH v2 05/11] drivers: serial: mcfuart: add Kconfig option In-Reply-To: <20181009214313.27034-1-angelo@sysam.it> References: <20181009214313.27034-1-angelo@sysam.it> Message-ID: <20181009214313.27034-6-angelo@sysam.it> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This patch adds missing CONFIG_MCFUART to Kconfig. Signed-off-by: Angelo Dureghello --- Changes for v2: - better Kconfig help --- drivers/serial/Kconfig | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 5fa27254e3..56dbfd5759 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -499,6 +499,15 @@ config MVEBU_A3700_UART Choose this option to add support for UART driver on the Marvell Armada 3700 SoC. The base address is configured via DT. +config MCFUART + bool "Freescale ColdFire UART support" + default n + help + Choose this option to add support for UART driver on the ColdFire + SoC's family. The serial communication channel provides a full-duplex + asynchronous/synchronous receiver and transmitter deriving an + operating frequency from the internal bus clock or an external clock. + config MXC_UART bool "IMX serial port support" depends on MX5 || MX6 -- 2.19.1