aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/usbdivar.h
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
committerJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
commite39756439c7255bc16ba14b7b991cb01ba1c93bd (patch)
tree112dfed9c5841280f457e0dca97e8de49e04ecd9 /sys/dev/usb/usbdivar.h
parent13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff)
Notes
Diffstat (limited to 'sys/dev/usb/usbdivar.h')
-rw-r--r--sys/dev/usb/usbdivar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h
index ca1fae6c41d73..9d8ca8aae5755 100644
--- a/sys/dev/usb/usbdivar.h
+++ b/sys/dev/usb/usbdivar.h
@@ -146,7 +146,7 @@ struct usbd_interface {
int altindex;
struct usbd_endpoint *endpoints;
void *priv;
- LIST_HEAD(, struct usbd_pipe) pipes;
+ LIST_HEAD(, usbd_pipe) pipes;
};
struct usbd_pipe {
@@ -155,8 +155,8 @@ struct usbd_pipe {
struct usbd_endpoint *endpoint;
int refcnt;
char running;
- SIMPLEQ_HEAD(, struct usbd_xfer) queue;
- LIST_ENTRY(struct usbd_pipe) next;
+ SIMPLEQ_HEAD(, usbd_xfer) queue;
+ LIST_ENTRY(usbd_pipe) next;
usbd_xfer_handle intrxfer; /* used for repeating requests */
char repeat;
@@ -194,7 +194,7 @@ struct usbd_xfer {
#define URQ_AUTO_DMABUF 0x10
#define URQ_DEV_DMABUF 0x20
- SIMPLEQ_ENTRY(struct usbd_xfer) next;
+ SIMPLEQ_ENTRY(usbd_xfer) next;
void *hcpriv; /* private use by the HC driver */
int hcprivint;