Commit 567e8f54 authored by Tony Lindgren's avatar Tony Lindgren

ARM: OMAP: Fix too much work for 8250

Needs to be fixed.
parent edea52f4
...@@ -2246,7 +2246,10 @@ serial8250_console_write(struct console *co, const char *s, unsigned int count) ...@@ -2246,7 +2246,10 @@ serial8250_console_write(struct console *co, const char *s, unsigned int count)
* and restore the IER * and restore the IER
*/ */
wait_for_xmitr(up, BOTH_EMPTY); 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) static int serial8250_console_setup(struct console *co, char *options)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment