Usermode/libc++ - Implement map::insert and map::erase
[tpg/acess2.git] / KernelLand / Modules / USB / Core / usb_poll.c
index a32e08e..27f4728 100644 (file)
@@ -81,10 +81,12 @@ int USB_PollThread(void *unused)
                // Check hosts
                for( tUSBHost *host = gUSB_Hosts; host; host = host->Next )
                {
-                       host->HostDef->CheckPorts(host->Ptr);
+                       if( host->HostDef->CheckPorts )
+                               host->HostDef->CheckPorts(host->Ptr);
                }
 
-               Time_Delay(100);
+               // 2s delay - fuck those with UHCI only :)
+               Time_Delay(2000);
        }
 }
 

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