From 04104fc051d44f4f9b3328f29b4be91fa4060f34 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 28 Apr 2021 23:12:17 +0200 Subject: Started conversion to Grub (#17) Yes, the CI won't like this. --- kernel/features/io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kernel/features/io.c') diff --git a/kernel/features/io.c b/kernel/features/io.c index ac599e2..eb4b7a5 100644 --- a/kernel/features/io.c +++ b/kernel/features/io.c @@ -208,7 +208,7 @@ void io_unblock_pid(u32 pid) proc_yield(); } -CLEAR void io_install(struct boot_info *boot) +CLEAR void io_install(void) { for (u32 i = 0; i < IO_MAX; i++) io_listeners[i] = list_new(); @@ -230,6 +230,6 @@ CLEAR void io_install(struct boot_info *boot) timer_install(); logger_install(); - fb_install(boot->vid); + fb_install(); bus_install(); } -- cgit v1.2.3