* Initialize all USB controllers attached to PCI. */
| 164 | * Initialize all USB controllers attached to PCI. |
| 165 | */ |
| 166 | int usb_initialize(void) |
| 167 | { |
| 168 | #if CONFIG(LP_USB_PCI) |
| 169 | usb_scan_pci_bus(0); |
| 170 | #endif |
| 171 | return 0; |
| 172 | } |
| 173 | |
| 174 | hci_t *usb_add_mmio_hc(hc_type type, void *bar) |
| 175 | { |
no test coverage detected