OpenSBI already expands \n to \r\n. Don't repeat the expansion, as it doubles the size of the resulting log with every other line being blank.
Signed-off-by: Andrew Cooper <[email protected]> --- CC: Bob Eshleman <[email protected]> CC: Alistair Francis <[email protected]> CC: Connor Davis <[email protected]> --- xen/arch/riscv/early_printk.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/xen/arch/riscv/early_printk.c b/xen/arch/riscv/early_printk.c index b66a11f1bc1a..97a94885773b 100644 --- a/xen/arch/riscv/early_printk.c +++ b/xen/arch/riscv/early_printk.c @@ -16,8 +16,6 @@ void early_puts(const char *s, size_t nr) { while ( nr-- > 0 ) { - if ( *s == '\n' ) - sbi_console_putchar('\r'); sbi_console_putchar(*s); s++; } -- 2.30.2
