diff options
author | Marvin Borner | 2021-04-28 23:12:17 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-28 23:12:17 +0200 |
commit | 04104fc051d44f4f9b3328f29b4be91fa4060f34 (patch) | |
tree | 1677c1739c44bd7c7e8722ea00ca3c6b45158c85 /kernel/features/io.c | |
parent | 895a58b1b57a0ae8028576404a90f12e0133cf5f (diff) |
Started conversion to Grub (#17)
Yes, the CI won't like this.
Diffstat (limited to 'kernel/features/io.c')
-rw-r--r-- | kernel/features/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
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(); } |