diff --git a/src/system/boot/platform/efi/dtb.cpp b/src/system/boot/platform/efi/dtb.cpp index 106542d0ef..60f9e13a68 100644 --- a/src/system/boot/platform/efi/dtb.cpp +++ b/src/system/boot/platform/efi/dtb.cpp @@ -66,6 +66,7 @@ const struct supported_uarts { { "sifive,uart0", UART_KIND_SIFIVE, &get_uart }, #elif defined(__ARM__) || defined(__aarch64__) { "arm,pl011", UART_KIND_PL011, &get_uart }, + { "snps,dw-apb-uart", UART_KIND_8250, &get_uart }, #endif }; @@ -510,8 +511,7 @@ dtb_set_kernel_args() if (uart.kind[0] == 0) { dprintf("kind: None!\n"); } else { - dprintf(" kind: %s", uart.kind); - dprintf("\n"); + dprintf(" kind: %s\n", uart.kind); dprintf(" regs: %#" B_PRIx64 ", %#" B_PRIx64 "\n", uart.regs.start, uart.regs.size); dprintf(" irq: %" B_PRIu32 "\n", uart.irq); dprintf(" clock: %" B_PRIu64 "\n", uart.clock);