From: Tony Lindgren Date: Tue, 7 Feb 2006 05:19:53 +0000 (-0800) Subject: ARM: OMAP: Fix too much work for 8250 X-Git-Tag: v2.6.16-omap1~103 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=567e8f546965d4833540254107949d40d4233ddb;p=linux-2.6-omap-h63xx.git ARM: OMAP: Fix too much work for 8250 Needs to be fixed. --- diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index 59ba4b1071c..f8ad8b6f0d9 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c @@ -2246,7 +2246,10 @@ serial8250_console_write(struct console *co, const char *s, unsigned int count) * and restore the IER */ wait_for_xmitr(up, BOTH_EMPTY); - serial_out(up, UART_IER, ier | UART_IER_THRI); + /* FIXME: This causes "too much work" on omap + * commit f91a3715db2bb44fcf08cec642e68f919b70f7f4 */ + //serial_out(up, UART_IER, ier | UART_IER_THRI); + serial_out(up, UART_IER, ier); } static int serial8250_console_setup(struct console *co, char *options)