From 9e90dc16ba18d77975c3e898eb9340832ff45b6c Mon Sep 17 00:00:00 2001 From: Alfred Perlstein Date: Thu, 30 Jul 2009 00:57:54 +0000 Subject: [PATCH] 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 --- sys/dev/usb/usbdi.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/usb/usbdi.h b/sys/dev/usb/usbdi.h index 6ed775eaf6c..0042c97ccff 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_ */