diff options
Diffstat (limited to 'sys/dev/usb/usb.c')
-rw-r--r-- | sys/dev/usb/usb.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index 5ef2f22..a6cc664 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -1,4 +1,4 @@ -/* $NetBSD: usb.c,v 1.59 2001/11/26 20:16:55 augustss Exp $ */ +/* $NetBSD: usb.c,v 1.61 2001/12/31 15:55:51 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -380,6 +380,13 @@ usb_event_thread(void *arg) DPRINTF(("usb_event_thread: start\n")); + /* + * In case this controller is a companion controller to an + * EHCI controller we need to wait until the + * EHCI controller has grabbed the port. + */ + usb_delay_ms(sc->sc_bus, 500); + /* Make sure first discover does something. */ sc->sc_bus->needs_explore = 1; usb_discover(sc); |