Deleted Added
full compact
1c1
< /* $FreeBSD: head/sys/dev/usb/usb_dev.h 189906 2009-03-17 01:46:40Z thompsa $ */
---
> /* $FreeBSD: head/sys/dev/usb/usb_dev.h 190181 2009-03-20 21:50:54Z thompsa $ */
138,140c138,140
< uint32_t timeout; /* timeout in milliseconds */
< uint32_t bufsize; /* BULK and INTERRUPT buffer size */
< uint16_t nframes; /* for isochronous mode */
---
> usb2_timeout_t timeout; /* timeout in milliseconds */
> usb2_frlength_t bufsize; /* BULK and INTERRUPT buffer size */
> usb2_frcount_t nframes; /* for isochronous mode */
178c178
< uint32_t offset, uint32_t len, uint8_t what);
---
> usb2_frlength_t offset, usb2_frlength_t len, uint8_t what);
180,181c180,181
< uint32_t len, uint8_t what);
< uint8_t usb2_fifo_put_data_buffer(struct usb2_fifo *f, void *ptr, uint32_t len);
---
> usb2_size_t len, uint8_t what);
> uint8_t usb2_fifo_put_data_buffer(struct usb2_fifo *f, void *ptr, usb2_size_t len);
184c184,185
< uint32_t offset, uint32_t len, uint32_t *actlen, uint8_t what);
---
> usb2_frlength_t offset, usb2_frlength_t len, usb2_frlength_t *actlen,
> uint8_t what);
186c187
< uint32_t len, uint32_t *actlen, uint8_t what);
---
> usb2_size_t len, usb2_size_t *actlen, uint8_t what);
188c189
< uint32_t *plen);
---
> usb2_size_t *plen);