diff options
author | alfred <alfred@FreeBSD.org> | 2009-07-30 00:57:54 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2009-07-30 00:57:54 +0000 |
commit | f688e04d86d4793ac4204f3914cb525ceac72e94 (patch) | |
tree | bc084da3d55fa70cae9a70d49d3bad5c35647efa /sys/dev/usb/usbdi.h | |
parent | fd0357779de667d9b21a36be3bb5ad95bfdde4c7 (diff) | |
download | FreeBSD-src-f688e04d86d4793ac4204f3914cb525ceac72e94.zip FreeBSD-src-f688e04d86d4793ac4204f3914cb525ceac72e94.tar.gz |
Missed this file for r195963:
USB core:
- add support for defragging of written device data.
- improve handling of alternate settings in device side mode.
- correct return value from usbd_get_no_alts() function.
- reported by: HPS
- P4 ID: 166156, 166168
- report USB device release information to devd and pnpinfo.
- reported by: MIHIRA Sanpei Yoshiro
- P4 ID: 166221
Submitted by: hps
Approved by: re
Diffstat (limited to 'sys/dev/usb/usbdi.h')
-rw-r--r-- | sys/dev/usb/usbdi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdi.h b/sys/dev/usb/usbdi.h index 6ed775e..0042c97 100644 --- a/sys/dev/usb/usbdi.h +++ b/sys/dev/usb/usbdi.h @@ -531,5 +531,8 @@ void usb_fifo_reset(struct usb_fifo *f); void usb_fifo_wakeup(struct usb_fifo *f); void usb_fifo_get_data_error(struct usb_fifo *fifo); void *usb_fifo_softc(struct usb_fifo *fifo); +void usb_fifo_set_close_zlp(struct usb_fifo *, uint8_t); +void usb_fifo_set_write_defrag(struct usb_fifo *, uint8_t); +void usb_fifo_free(struct usb_fifo *f); #endif /* _KERNEL */ #endif /* _USB_USBDI_H_ */ |