Revert "Correct the minimum recovery time needed to reset the XHCI port (#31)"

This reverts commit a95c554c6b.
This commit is contained in:
Martin Whitaker 2022-04-02 09:21:30 +01:00
parent a95c554c6b
commit bbfaf10240
1 changed files with 1 additions and 1 deletions

View File

@ -1159,7 +1159,7 @@ bool xhci_init(uintptr_t base_addr, usb_hcd_t *hcd)
// Reset the port. // Reset the port.
if (!reset_xhci_port(op_regs, port_idx)) continue; if (!reset_xhci_port(op_regs, port_idx)) continue;
usleep(100*MILLISEC); // USB reset recovery time usleep(10*MILLISEC); // USB reset recovery time
port_status = read32(&op_regs->port_regs[port_idx].sc); port_status = read32(&op_regs->port_regs[port_idx].sc);