summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-04-08 14:09:22 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-08 17:19:46 +0200
commitbefe4c6709815849c396d137cf97fac628812e8c (patch)
tree87737f100cc39160b11adc04ccac40f53a860a84 /Kernel/init.cpp
parentc8087a42fc6b57a31ad24cd73ab1c617adfbd0ab (diff)
downloadserenity-befe4c6709815849c396d137cf97fac628812e8c.zip
Kernel: Remove DebugLogDevice
This was a cute idea but ultimately it's just not useful since we already have the dbgputch() and dbgputstr() syscalls.
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r--Kernel/init.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp
index 26a41d11ef..cc49a0465f 100644
--- a/Kernel/init.cpp
+++ b/Kernel/init.cpp
@@ -33,7 +33,6 @@
#include <Kernel/CMOS.h>
#include <Kernel/CommandLine.h>
#include <Kernel/Devices/BXVGADevice.h>
-#include <Kernel/Devices/DebugLogDevice.h>
#include <Kernel/Devices/DiskPartition.h>
#include <Kernel/Devices/EBRPartitionTable.h>
#include <Kernel/Devices/FullDevice.h>
@@ -125,7 +124,6 @@ extern "C" [[noreturn]] void init()
new KeyboardDevice;
new PS2MouseDevice;
setup_vmmouse();
- new DebugLogDevice;
new Console;
klog() << "Starting SerenityOS...";