summaryrefslogtreecommitdiff
path: root/Kernel/kprintf.cpp
diff options
context:
space:
mode:
authorConrad Pankoff <deoxxa@fknsrs.biz>2019-09-08 22:27:27 +1000
committerAndreas Kling <awesomekling@gmail.com>2019-09-09 08:14:00 +0200
commitdfb538a413e8fefee8ee3af4338495ac9df52295 (patch)
tree5f884815c9ce6fc5b6e01ba61c74758af3f93adf /Kernel/kprintf.cpp
parent1fb6a7d893d488d1467ec478170aa14e0227bfb4 (diff)
downloadserenity-dfb538a413e8fefee8ee3af4338495ac9df52295.zip
Kernel: Write logs into dmesg from the start of the boot process
Diffstat (limited to 'Kernel/kprintf.cpp')
-rw-r--r--Kernel/kprintf.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Kernel/kprintf.cpp b/Kernel/kprintf.cpp
index 0cf012ed40..69dffbcf7e 100644
--- a/Kernel/kprintf.cpp
+++ b/Kernel/kprintf.cpp
@@ -70,10 +70,6 @@ static void console_putch(char*&, char ch)
{
if (serial_debug)
serial_putch(ch);
- if (!current) {
- IO::out8(0xe9, ch);
- return;
- }
Console::the().put_char(ch);
}