diff options
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r-- | sys/dev/usb/uhub.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index 36c700f..d358590 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -1,4 +1,4 @@ -/* $NetBSD: uhub.c,v 1.48 2000/12/29 01:24:56 augustss Exp $ */ +/* $NetBSD: uhub.c,v 1.49 2001/01/21 19:00:06 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -592,7 +592,8 @@ uhub_intr(usbd_xfer_handle xfer, usbd_private_handle addr, usbd_status status) if (status == USBD_STALLED) usbd_clear_endpoint_stall_async(sc->sc_ipipe); else if (status == USBD_NORMAL_COMPLETION) - usb_needs_explore(sc->sc_hub->bus); + usb_needs_explore(sc->sc_hub); + } #if defined(__FreeBSD__) |