summaryrefslogtreecommitdiff
path: root/firmware/usbstack/usb_serial.c
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_serial.c
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_serial.c')
-rw-r--r--firmware/usbstack/usb_serial.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/usbstack/usb_serial.c b/firmware/usbstack/usb_serial.c
index c96936f1d4..fad62787ec 100644
--- a/firmware/usbstack/usb_serial.c
+++ b/firmware/usbstack/usb_serial.c
@@ -277,11 +277,13 @@ int usb_serial_get_config_descriptor(unsigned char *dest, int max_packet_size)
277} 277}
278 278
279/* called by usb_core_control_request() */ 279/* called by usb_core_control_request() */
280bool usb_serial_control_request(struct usb_ctrlrequest* req, unsigned char* dest) 280bool usb_serial_control_request(struct usb_ctrlrequest* req, void* reqdata, unsigned char* dest)
281{ 281{
282 bool handled = false; 282 bool handled = false;
283 283
284 (void)dest; 284 (void)dest;
285 (void)reqdata;
286
285 if (req->wIndex != control_interface) 287 if (req->wIndex != control_interface)
286 { 288 {
287 return false; 289 return false;