diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-06-07 19:41:11 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-06-07 19:41:11 +0000 |
commit | 2d149b09c57b22367f7e05e3efaf23f0cb328621 (patch) | |
tree | c74029825164c1a63bb75e5f673438c24b743f22 /sys/dev/usb/usb_debug.h | |
parent | 919e3cbf2805715b8fefeab48237aaec49b8b9e9 (diff) | |
download | FreeBSD-src-2d149b09c57b22367f7e05e3efaf23f0cb328621.zip FreeBSD-src-2d149b09c57b22367f7e05e3efaf23f0cb328621.tar.gz |
Rename usb pipes to endpoints as it better represents what they are, and struct
usb_pipe may be used for a different purpose later on.
Diffstat (limited to 'sys/dev/usb/usb_debug.h')
-rw-r--r-- | sys/dev/usb/usb_debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usb_debug.h b/sys/dev/usb/usb_debug.h index 38869bc..d3e6127 100644 --- a/sys/dev/usb/usb_debug.h +++ b/sys/dev/usb/usb_debug.h @@ -53,13 +53,13 @@ extern int usb2_debug; struct usb_interface; struct usb_device; -struct usb_pipe; +struct usb_endpoint; struct usb_xfer; void usb2_dump_iface(struct usb_interface *iface); void usb2_dump_device(struct usb_device *udev); -void usb2_dump_queue(struct usb_pipe *pipe); -void usb2_dump_pipe(struct usb_pipe *pipe); +void usb2_dump_queue(struct usb_endpoint *ep); +void usb2_dump_endpoint(struct usb_endpoint *ep); void usb2_dump_xfer(struct usb_xfer *xfer); #endif /* _USB2_DEBUG_H_ */ |