[kernel] Remove 'fb hack' include from scheduler

scheduler.cpp was still including kernel_args.h because of the old hack
of passing around the framebuffer. Get that shit outta here.
This commit is contained in:
Justin C. Miller
2021-12-30 20:34:39 -08:00
parent af7b9bde29
commit 3c44bf55eb

View File

@@ -1,6 +1,7 @@
#include <stddef.h>
#include <j6/init.h>
#include "kutil/assert.h"
#include "apic.h"
#include "clock.h"
@@ -21,10 +22,6 @@
#include "objects/vm_area.h"
#include "scheduler.h"
// here for the framebuffer hack
#include "kernel_args.h"
#include "kutil/assert.h"
extern "C" void task_switch(TCB *tcb);
scheduler *scheduler::s_instance = nullptr;