summaryrefslogtreecommitdiff
path: root/firmware/usbstack/usb_class_driver.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-09-20 01:05:39 +0100
committerAidan MacDonald <amachronic@protonmail.com>2021-10-16 21:14:42 +0100
commitdff8320a5d04d74d8a08a81d9e6f6ed296d672ce (patch)
tree6794d4f98756771543d9838a315e95089bdd394a /firmware/usbstack/usb_class_driver.h
parentb69d43c247994c846da75c4b35d4351fbf96984d (diff)
downloadrockbox-dff8320a5d04d74d8a08a81d9e6f6ed296d672ce.tar.gz
rockbox-dff8320a5d04d74d8a08a81d9e6f6ed296d672ce.zip
usb: add request data argument to all control request handlers
Change-Id: I237143fa0d95c914b8e25ed22f8acde96ec00551
Diffstat (limited to 'firmware/usbstack/usb_class_driver.h')
-rw-r--r--firmware/usbstack/usb_class_driver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/usbstack/usb_class_driver.h b/firmware/usbstack/usb_class_driver.h
index 0ee08579e4..bffc994d9e 100644
--- a/firmware/usbstack/usb_class_driver.h
+++ b/firmware/usbstack/usb_class_driver.h
@@ -80,7 +80,7 @@ struct usb_class_driver {
80 able to handle it, it should ack the request, and return true. Otherwise 80 able to handle it, it should ack the request, and return true. Otherwise
81 it should return false. 81 it should return false.
82 Optional function */ 82 Optional function */
83 bool (*control_request)(struct usb_ctrlrequest* req, unsigned char *dest); 83 bool (*control_request)(struct usb_ctrlrequest* req, void* reqdata, unsigned char *dest);
84 84
85#ifdef HAVE_HOTSWAP 85#ifdef HAVE_HOTSWAP
86 /* Tells the driver that a hotswappable disk/card was inserted or 86 /* Tells the driver that a hotswappable disk/card was inserted or