Ver Fonte

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

Conrad Pankoff há 6 anos atrás
pai
commit
dfb538a413
1 ficheiros alterados com 0 adições e 4 exclusões
  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)
     if (serial_debug)
         serial_putch(ch);
         serial_putch(ch);
-    if (!current) {
-        IO::out8(0xe9, ch);
-        return;
-    }
     Console::the().put_char(ch);
     Console::the().put_char(ch);
 }
 }