From bdaf24f8a5736a07fe633e15bbe2cd9fffaf8fe9 Mon Sep 17 00:00:00 2001 From: Adam Ford Date: Tue, 24 Jul 2018 18:06:04 -0500 Subject: ti_omap3_common: Add CONFIG_SYS_NS16550_COMx entries Several boards do not use the default UART3, so they do a check for ifdef CONFIG_SPL_BUILD and enable the pointer for CONFIG_SYS_NS16550_COMx to point to OMAP34XX_UARTx. Let's consoldate this all into one place, and remove them from the individual boards. Signed-off-by: Adam Ford --- include/configs/ti_omap3_common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/configs/ti_omap3_common.h') diff --git a/include/configs/ti_omap3_common.h b/include/configs/ti_omap3_common.h index 7cd4272ce5..6d16fc782b 100644 --- a/include/configs/ti_omap3_common.h +++ b/include/configs/ti_omap3_common.h @@ -38,6 +38,8 @@ /* Select serial console configuration */ #ifdef CONFIG_SPL_BUILD +#define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1 +#define CONFIG_SYS_NS16550_COM2 OMAP34XX_UART2 #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3 #define CONFIG_SERIAL3 3 #endif -- cgit v1.2.1