From 78e1300780955bbd2c192d8bb815959a0ba9f378 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 21 Dec 2025 18:01:59 -0500 Subject: mos/x86_64: mu_uart_write() -> mu_uart_writed() Signed-off-by: Ian Moffett --- mos/sys/arch/x86_64/io/uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mos/sys/arch/x86_64/io/uart.c b/mos/sys/arch/x86_64/io/uart.c index 99c4645..73ed0ed 100644 --- a/mos/sys/arch/x86_64/io/uart.c +++ b/mos/sys/arch/x86_64/io/uart.c @@ -42,7 +42,7 @@ init_uart(USHORT port) } void -mu_uart_write(const char *s, USIZE len) +mu_uart_writed(const char *s, USIZE len) { for (USIZE i = 0; i < len; ++i) { md_outb(DEFAULT_PORT, s[i]); -- cgit v1.2.3