Commit a8c2e555 authored by Michal Simek's avatar Michal Simek

microblaze: Send CR before LF for early console

This patch fixes problem with measuring tools.
Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent 6c7a2676
...@@ -50,9 +50,9 @@ static void early_printk_uartlite_write(struct console *unused, ...@@ -50,9 +50,9 @@ static void early_printk_uartlite_write(struct console *unused,
const char *s, unsigned n) const char *s, unsigned n)
{ {
while (*s && n-- > 0) { while (*s && n-- > 0) {
early_printk_uartlite_putc(*s);
if (*s == '\n') if (*s == '\n')
early_printk_uartlite_putc('\r'); early_printk_uartlite_putc('\r');
early_printk_uartlite_putc(*s);
s++; s++;
} }
} }
...@@ -94,9 +94,9 @@ static void early_printk_uart16550_write(struct console *unused, ...@@ -94,9 +94,9 @@ static void early_printk_uart16550_write(struct console *unused,
const char *s, unsigned n) const char *s, unsigned n)
{ {
while (*s && n-- > 0) { while (*s && n-- > 0) {
early_printk_uart16550_putc(*s);
if (*s == '\n') if (*s == '\n')
early_printk_uart16550_putc('\r'); early_printk_uart16550_putc('\r');
early_printk_uart16550_putc(*s);
s++; s++;
} }
} }
......
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