From a4c7b7a46b16de7dfa2c3f2fe1e1ce071328fa77 Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Sun, 16 Feb 2014 06:55:41 +0200 Subject: vortex86ex: Drop baudrate programming for 10 UARTs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is responsibility of end-user application. When coreboot does it, it is only for the purpose of debug console. Change-Id: Idbbf9528c60b9b819b7bea9dfe84078a3f055bc9 Signed-off-by: Kyösti Mälkki Reviewed-on: http://review.coreboot.org/5251 Reviewed-by: Alexandru Gagniuc Tested-by: build bot (Jenkins) Reviewed-by: Andrew Wu --- src/southbridge/dmp/vortex86ex/southbridge.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/southbridge/dmp') diff --git a/src/southbridge/dmp/vortex86ex/southbridge.c b/src/southbridge/dmp/vortex86ex/southbridge.c index bcdd8b22b5..2a68e4e4ea 100644 --- a/src/southbridge/dmp/vortex86ex/southbridge.c +++ b/src/southbridge/dmp/vortex86ex/southbridge.c @@ -386,8 +386,7 @@ static u32 make_uart_config(u16 base, u8 irq) #define SETUP_UART(n) \ uart_cfg = make_uart_config(CONFIG_UART##n##_IO, CONFIG_UART##n##_IRQ);\ - outl(uart_cfg, base + (n - 1) * 4);\ - uart8250_init(CONFIG_UART##n##_IO, 115200 / CONFIG_UART##n##_BAUD); + outl(uart_cfg, base + (n - 1) * 4); static void ex_sb_uart_init(struct device *dev) { -- cgit v1.2.3