aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/dmp
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-02-16 06:55:41 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-02-17 09:14:55 +0100
commita4c7b7a46b16de7dfa2c3f2fe1e1ce071328fa77 (patch)
tree01949626f9ed19981c195bd38ee43c1fcc7eee05 /src/southbridge/dmp
parent591031f4deb9d44cef0de8501b482c6a32872581 (diff)
vortex86ex: Drop baudrate programming for 10 UARTs
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 <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5251 Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Tested-by: build bot (Jenkins) Reviewed-by: Andrew Wu <arw@dmp.com.tw>
Diffstat (limited to 'src/southbridge/dmp')
-rw-r--r--src/southbridge/dmp/vortex86ex/southbridge.c3
1 files changed, 1 insertions, 2 deletions
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)
{