diff options
Diffstat (limited to 'sys/dev/usb/usb_controller.h')
-rw-r--r-- | sys/dev/usb/usb_controller.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/usb_controller.h b/sys/dev/usb/usb_controller.h index 623c0f5..952cd19 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 */ |