forked from Minki/linux
microblaze: Send CR before LF for early console
This patch fixes problem with measuring tools. Signed-off-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
parent
6c7a2676f5
commit
a8c2e555b0
@ -50,9 +50,9 @@ static void early_printk_uartlite_write(struct console *unused,
|
||||
const char *s, unsigned n)
|
||||
{
|
||||
while (*s && n-- > 0) {
|
||||
early_printk_uartlite_putc(*s);
|
||||
if (*s == '\n')
|
||||
early_printk_uartlite_putc('\r');
|
||||
early_printk_uartlite_putc(*s);
|
||||
s++;
|
||||
}
|
||||
}
|
||||
@ -94,9 +94,9 @@ static void early_printk_uart16550_write(struct console *unused,
|
||||
const char *s, unsigned n)
|
||||
{
|
||||
while (*s && n-- > 0) {
|
||||
early_printk_uart16550_putc(*s);
|
||||
if (*s == '\n')
|
||||
early_printk_uart16550_putc('\r');
|
||||
early_printk_uart16550_putc(*s);
|
||||
s++;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user