From efad89a1b70e265c3706662a8392fd1164c06bd7 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Tue, 20 Jul 2021 20:25:29 -0500 Subject: io: prefix a 'k' to print functions Add a 'k' prefix to the kernel versions of the printf family. --- kernel/init.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'kernel/init.c') diff --git a/kernel/init.c b/kernel/init.c index a7a71d6..195ce92 100644 --- a/kernel/init.c +++ b/kernel/init.c @@ -4,7 +4,5 @@ void kernel_main(void) { tty_init(); - serial_init(); - serial_writestring("Hello world\n"); - printf("Hello world\n"); + kprintf("Hello world\n"); } -- cgit v1.2.3