USB controller detected on FireBee - needs a long wait time for config access there...

This commit is contained in:
Markus Fröschle
2013-11-09 08:33:26 +00:00
parent fff5cd371d
commit bdb9fc69a4
7 changed files with 34 additions and 21 deletions

View File

@@ -160,11 +160,11 @@ int usb_init(int32_t handle, const struct pci_device_id *ent)
xprintf("sorry, no uhci driver available\r\n");
break;
case PCI_CLASS_SERIAL_USB_OHCI:
xprintf("initialize ohci interface, ");
xprintf("initialize ohci interface\r\n");
res = ohci_usb_lowlevel_init(handle, ent, &priv);
break;
case PCI_CLASS_SERIAL_USB_EHCI:
xprintf("initialize ehci interface, ");
xprintf("initialize ehci interface\r\n");
res = ehci_usb_lowlevel_init(handle, ent, &priv);
break;
default: res = -1; break;