aboutsummaryrefslogtreecommitdiff
path: root/kernel/main.c
diff options
context:
space:
mode:
authorMarvin Borner2020-11-13 19:13:29 +0100
committerMarvin Borner2020-11-13 19:13:29 +0100
commita1770aac3af3b6b893af9937e0d0712902eeb9e6 (patch)
treec45df5cb814f54901121bc63ba6b9832003aa700 /kernel/main.c
parent8d08b8e80440b310e623c0ae397065bf28d94d1e (diff)
Removed some useless code
I spent several hours tracing the bug that followed me since months, but I haven't found it yet :( Where are you, HEISENBUG?!
Diffstat (limited to 'kernel/main.c')
-rw-r--r--kernel/main.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/kernel/main.c b/kernel/main.c
index 6e666b5..d567963 100644
--- a/kernel/main.c
+++ b/kernel/main.c
@@ -1,17 +1,15 @@
// MIT License, Copyright (c) 2020 Marvin Borner
-#include <acpi.h>
#include <boot.h>
#include <cpu.h>
-#include <fpu.h>
#include <fs.h>
+#include <interrupts.h>
#include <keyboard.h>
#include <load.h>
#include <mem.h>
#include <mouse.h>
#include <net.h>
#include <pci.h>
-#include <print.h>
#include <serial.h>
#include <syscall.h>
#include <timer.h>
@@ -29,10 +27,8 @@ void kernel_main(struct vid_info *vid_info)
cpu_print();
// Install drivers
- acpi_install();
pci_install();
interrupts_install();
- /* fpu_install(); */
timer_install();
keyboard_install();
mouse_install();