svn commit: r195968 - head/sys/dev/usb

Alfred Perlstein alfred at FreeBSD.org
Thu Jul 30 00:57:55 UTC 2009


Author: alfred
Date: Thu Jul 30 00:57:54 2009
New Revision: 195968
URL: http://svn.freebsd.org/changeset/base/195968

Log:
  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

Modified:
  head/sys/dev/usb/usbdi.h

Modified: head/sys/dev/usb/usbdi.h
==============================================================================
--- head/sys/dev/usb/usbdi.h	Thu Jul 30 00:17:08 2009	(r195967)
+++ head/sys/dev/usb/usbdi.h	Thu Jul 30 00:57:54 2009	(r195968)
@@ -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_ */


More information about the svn-src-all mailing list