aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb_controller.h
diff options
context:
space:
mode:
authorAndrew Thompson <thompsa@FreeBSD.org>2009-06-23 02:19:59 +0000
committerAndrew Thompson <thompsa@FreeBSD.org>2009-06-23 02:19:59 +0000
commited6d949afdbe3f25e6ef640881d8a0a72d7b7aa8 (patch)
treeee5c9acfe716a9835136731811e9e1a68751e278 /sys/dev/usb/usb_controller.h
parent8c8fff3177f8d9611f191878b3864dc8ca3e5965 (diff)
Notes
Diffstat (limited to 'sys/dev/usb/usb_controller.h')
-rw-r--r--sys/dev/usb/usb_controller.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/usb_controller.h b/sys/dev/usb/usb_controller.h
index 623c0f557707..952cd19d7247 100644
--- a/sys/dev/usb/usb_controller.h
+++ b/sys/dev/usb/usb_controller.h
@@ -109,11 +109,11 @@ struct usb_pipe_methods {
/* Mandatory USB Device and Host mode callbacks: */
- usb_callback_t *open;
- usb_callback_t *close;
+ void (*open)(struct usb_xfer *);
+ void (*close)(struct usb_xfer *);
- usb_callback_t *enter;
- usb_callback_t *start;
+ void (*enter)(struct usb_xfer *);
+ void (*start)(struct usb_xfer *);
/* Optional */