int Ports = FindOHC( my_ohci, (void*)0xfed00000 );
#ifdef USB_DEBUG
if( Ports==0 ) debugPrint("Error no ports found\n");
#endif //USB_DEBUG
//for( int i=0; i
int i=0;
// {
int DEV = FindDev(my_ohci, i);
#ifdef USB_DEBUG
switch (DEV)
{
case 0: { sprintf(buf,"\n *NO* device found at Port %d\n", i); }
case 1: { sprintf(buf,"\n lowspeed-device found at Port %d\n", i); }
case 2: { sprintf(buf,"\n fullspeed-device found at Port %d\n", i); }
.. prints buf to screen here (cut for brevity).. };
#endif //USB_DEBUG