Parcourir la source

Kernel: Write logs into dmesg from the start of the boot process

Conrad Pankoff il y a 5 ans
Parent
commit
dfb538a413
1 fichiers modifiés avec 0 ajouts et 4 suppressions
  1. 0 4
      Kernel/kprintf.cpp

+ 0 - 4
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);
 }