From 70056c9ed01c546f40cacabe091749c228ef9e20 Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Sun, 19 Dec 2021 21:22:38 -0500 Subject: [PATCH] Revert "Default UART to 16550" This reverts commit 85eaaf9d2d120d9c0a4a67cdbe510f9ff2abe9d0. --- src/device/serial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/serial.c b/src/device/serial.c index a4c0decf6..5d1c422af 100644 --- a/src/device/serial.c +++ b/src/device/serial.c @@ -718,7 +718,7 @@ serial_set_next_inst(int ni) void serial_standalone_init(void) { for ( ; next_inst < 4; ) - device_add_inst(&ns16550_device, next_inst + 1); + device_add_inst(&i8250_device, next_inst + 1); };