diff options
author | 1999-08-27 09:00:27 +0000 | |
---|---|---|
committer | 1999-08-27 09:00:27 +0000 | |
commit | f8958cb133f9eb5739e597c8ff14f11ad08247f1 (patch) | |
tree | 25320e66f045c2f1d8bd86d03657a43934af7a6f /sys/dev/usb/usbdi_util.h | |
parent | sync (diff) | |
download | wireguard-openbsd-f8958cb133f9eb5739e597c8ff14f11ad08247f1.tar.xz wireguard-openbsd-f8958cb133f9eb5739e597c8ff14f11ad08247f1.zip |
Sync with NetBSD;
Make sure not to call tsleep() from suspend/resume routine.
Move more of the transfer completion processing to HC independent code.
Fix some problems with transfer abort & timeout.
Merge the soft_{td,qh} with the real {td,qh}. This saves time and space.
Diffstat (limited to 'sys/dev/usb/usbdi_util.h')
-rw-r--r-- | sys/dev/usb/usbdi_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usbdi_util.h b/sys/dev/usb/usbdi_util.h index 9146a9365d3..f77b789d522 100644 --- a/sys/dev/usb/usbdi_util.h +++ b/sys/dev/usb/usbdi_util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: usbdi_util.h,v 1.1 1999/08/13 05:28:05 fgsch Exp $ */ +/* $OpenBSD: usbdi_util.h,v 1.2 1999/08/27 09:00:30 fgsch Exp $ */ /* $NetBSD: usbdi_util.h,v 1.14 1999/08/07 23:14:17 augustss Exp $ */ /* @@ -91,7 +91,7 @@ usbd_status usbd_set_config_index usbd_status usbd_bulk_transfer __P((usbd_request_handle reqh, usbd_pipe_handle pipe, u_int16_t flags, - void *buf, u_int32_t *size, char *lbl)); + u_int32_t timeout, void *buf, u_int32_t *size, char *lbl)); void usb_detach_wait __P((bdevice *)); void usb_detach_wakeup __P((bdevice *)); |