diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-22 20:33:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-22 20:33:12 -0500 |
commit | 9d8f057acbd38d8177cf2ffd5e151d52c2477372 (patch) | |
tree | 1c3387b045a8a487ff99bf3abed1cdf41670f6e6 /drivers/serial/8250_early.c | |
parent | 591eb85ecd7e6eb8596c6129ae074e16636b99f4 (diff) | |
parent | 91bca4b3e2f1aaaf67e62a36914f33ca1e7d5a06 (diff) |
Merge master.kernel.org:/home/rmk/linux-2.6-serial
* master.kernel.org:/home/rmk/linux-2.6-serial:
[SERIAL] Merge avlab serial board entries in parport_serial
[SERIAL] kernel console should send CRLF not LFCR
Diffstat (limited to 'drivers/serial/8250_early.c')
-rw-r--r-- | drivers/serial/8250_early.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/serial/8250_early.c b/drivers/serial/8250_early.c index 59ba5d993b4b..7e511199b4c5 100644 --- a/drivers/serial/8250_early.c +++ b/drivers/serial/8250_early.c | |||
@@ -74,7 +74,7 @@ static void __init wait_for_xmitr(struct uart_port *port) | |||
74 | } | 74 | } |
75 | } | 75 | } |
76 | 76 | ||
77 | static void __init putc(struct uart_port *port, unsigned char c) | 77 | static void __init putc(struct uart_port *port, int c) |
78 | { | 78 | { |
79 | wait_for_xmitr(port); | 79 | wait_for_xmitr(port); |
80 | serial_out(port, UART_TX, c); | 80 | serial_out(port, UART_TX, c); |
@@ -89,12 +89,7 @@ static void __init early_uart_write(struct console *console, const char *s, unsi | |||
89 | ier = serial_in(port, UART_IER); | 89 | ier = serial_in(port, UART_IER); |
90 | serial_out(port, UART_IER, 0); | 90 | serial_out(port, UART_IER, 0); |
91 | 91 | ||
92 | while (*s && count-- > 0) { | 92 | uart_console_write(port, s, count, putc); |
93 | putc(port, *s); | ||
94 | if (*s == '\n') | ||
95 | putc(port, '\r'); | ||
96 | s++; | ||
97 | } | ||
98 | 93 | ||
99 | /* Wait for transmitter to become empty and restore the IER */ | 94 | /* Wait for transmitter to become empty and restore the IER */ |
100 | wait_for_xmitr(port); | 95 | wait_for_xmitr(port); |