[kernel] Clean up includes in kernel logger
Drive-by include fixup as I was looking into how to teach the bootloader to store its logs in the kernel's log memory.
This commit is contained in:
@@ -4,8 +4,6 @@
|
||||
|
||||
#include "kassert.h"
|
||||
#include "logger.h"
|
||||
#include "objects/system.h"
|
||||
#include "objects/thread.h"
|
||||
|
||||
// The logger is initialized _before_ global constructors are called,
|
||||
// so that we can start log output immediately. Keep its constructor
|
||||
|
||||
@@ -5,10 +5,11 @@
|
||||
#include <stdarg.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <j6/types.h>
|
||||
#include <util/counted.h>
|
||||
#include <util/spinlock.h>
|
||||
|
||||
#include "objects/event.h"
|
||||
#include "wait_queue.h"
|
||||
|
||||
enum class logs : uint8_t {
|
||||
#define LOG(name, lvl) name,
|
||||
|
||||
Reference in New Issue
Block a user