Modules/USB - Working on driver support, little headache
[tpg/acess2.git] / Modules / USB / Core / main.c
index d99ef3a..277cf7c 100644 (file)
@@ -30,8 +30,8 @@ tDevFS_Driver gUSB_DrvInfo = {
        }
 };
 tUSBHost       *gUSB_Hosts = NULL;
-tUSBDevice     *gUSB_InterruptDevs = NULL;
-tUSBDevice     *gUSB_InterruptLast = NULL;
+tUSBInterface  *gUSB_InterruptDevs = NULL;
+tUSBInterface  *gUSB_InterruptLast = NULL;
 
 // === CODE ===
 /**
@@ -50,7 +50,7 @@ int USB_PollThread(void *unused)
 {
        for(;;)
        {
-               for( tUSBDevice *dev = gUSB_InterruptDevs; dev; dev = dev->Next )
+               for( tUSBInterface *dev = gUSB_InterruptDevs; dev; dev = dev->Next )
                {
 //                     hub->CheckPorts(hub, hub->Device);
                }

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