Correctness in ATA driver
[tpg/acess2.git] / Kernel / drv / kb.c
index ba9eb72..6577882 100644 (file)
@@ -83,17 +83,15 @@ void KB_IRQHandler()
        // int  keyNum;
 
        // Check port 0x64 to tell if this is from the aux port
-       if( inb(0x64) & 0x20 )  return;
+       //if( inb(0x64) & 0x20 )        return;
 
        scancode = inb(0x60); // Read from the keyboard's data buffer
        //Log_Debug("Keyboard", "scancode = %02x", scancode);
 
-       //Log("KB_IRQHandler: scancode = 0x%02x", scancode);
-
        // Ignore ACKs
        if(scancode == 0xFA) {
-               // Oh man! This is anachic (I'm leaving it here to represent the
-               // mess that Acess once was)
+               // Oh man! This is anarchic (I'm leaving it here to represent
+               // the mess that Acess once was)
                //kb_lastChar = KB_ACK;
                return;
        }

UCC git Repository :: git.ucc.asn.au