summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-12-21 18:01:59 -0500
committerIan Moffett <ian@osmora.org>2025-12-21 18:01:59 -0500
commit78e1300780955bbd2c192d8bb815959a0ba9f378 (patch)
tree97abe8fe306b8070136d350e61b0c5bfb277f857
parentbfbce336729d1597950d741b9d5ab469d625b2d9 (diff)
mos/x86_64: mu_uart_write() -> mu_uart_writed()
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--mos/sys/arch/x86_64/io/uart.c2
1 files changed, 1 insertions, 1 deletions
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]);