summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/uhub.c
diff options
context:
space:
mode:
authoraaron <aaron@openbsd.org>2001-05-03 02:20:31 +0000
committeraaron <aaron@openbsd.org>2001-05-03 02:20:31 +0000
commitb6aa61b11361270abdead657af96d47f5e453624 (patch)
tree5fe351d7b4658c8b6bd9383c818deeeb2b9b77cf /sys/dev/usb/uhub.c
parentClean up a signed vs unsigned error in gm ethernet. (diff)
downloadwireguard-openbsd-b6aa61b11361270abdead657af96d47f5e453624.tar.xz
wireguard-openbsd-b6aa61b11361270abdead657af96d47f5e453624.zip
Sync with NetBSD. Tested with a USB keyboard, USB mouse, and three different
kue(4) Ethernet devices.
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r--sys/dev/usb/uhub.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c
index 5a60a06232b..05dfb76d3a7 100644
--- a/sys/dev/usb/uhub.c
+++ b/sys/dev/usb/uhub.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: uhub.c,v 1.12 2001/01/28 09:43:42 aaron Exp $ */
-/* $NetBSD: uhub.c,v 1.47 2000/09/24 02:08:38 augustss Exp $ */
+/* $OpenBSD: uhub.c,v 1.13 2001/05/03 02:20:33 aaron Exp $ */
+/* $NetBSD: uhub.c,v 1.49 2001/01/21 19:00:06 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $ */
/*
@@ -569,7 +569,7 @@ uhub_intr(usbd_xfer_handle xfer, usbd_private_handle addr, usbd_status status)
if (status != USBD_NORMAL_COMPLETION)
usbd_clear_endpoint_stall_async(sc->sc_ipipe);
- usb_needs_explore(sc->sc_hub->bus);
+ usb_needs_explore(sc->sc_hub);
}
#if defined(__FreeBSD__)