serial_core: Commonalize crlf when working w/ a non open console port
[deliverable/linux.git] / drivers / tty / serial / serial_core.c
index f26834d262b3a8d540a96455480fa4d5b6a1a81e..5dba9766f626397ef5619a40f613001238a26eae 100644 (file)
@@ -2236,6 +2236,9 @@ static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
                return;
 
        port = state->uart_port;
+
+       if (ch == '\n')
+               port->ops->poll_put_char(port, '\r');
        port->ops->poll_put_char(port, ch);
 }
 #endif
This page took 0.026063 seconds and 5 git commands to generate.