summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/usbstack/drivers/device/usb_serial.c2
-rw-r--r--firmware/usbstack/drivers/device/usb_storage.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/firmware/usbstack/drivers/device/usb_serial.c b/firmware/usbstack/drivers/device/usb_serial.c
index 0738b9cc36..9f1778a3f2 100644
--- a/firmware/usbstack/drivers/device/usb_serial.c
+++ b/firmware/usbstack/drivers/device/usb_serial.c
@@ -296,7 +296,7 @@ static int config_buf(uint8_t *buf, uint8_t type, unsigned index)
296 int len; 296 int len;
297 297
298 /* TODO check index*/ 298 /* TODO check index*/
299 (void)index; 299 (void)index;
300 300
301 len = usb_stack_configdesc(&serial_bulk_config_desc, buf, BUFFER_SIZE, dev.descriptors); 301 len = usb_stack_configdesc(&serial_bulk_config_desc, buf, BUFFER_SIZE, dev.descriptors);
302 if (len < 0) { 302 if (len < 0) {
diff --git a/firmware/usbstack/drivers/device/usb_storage.c b/firmware/usbstack/drivers/device/usb_storage.c
index cbb974cab7..30f376b1cc 100644
--- a/firmware/usbstack/drivers/device/usb_storage.c
+++ b/firmware/usbstack/drivers/device/usb_storage.c
@@ -279,8 +279,8 @@ static int config_buf(uint8_t *buf, uint8_t type, unsigned index)
279{ 279{
280 int len; 280 int len;
281 281
282 (void)index; 282 (void)index;
283 283
284 len = usb_stack_configdesc(&storage_config_desc, buf, BUFFER_SIZE, dev.descriptors); 284 len = usb_stack_configdesc(&storage_config_desc, buf, BUFFER_SIZE, dev.descriptors);
285 logf("result %d", len); 285 logf("result %d", len);
286 if (len < 0) { 286 if (len < 0) {
@@ -292,7 +292,7 @@ static int config_buf(uint8_t *buf, uint8_t type, unsigned index)
292 292
293static int set_config(int config) 293static int set_config(int config)
294{ 294{
295 (void)config; 295 (void)config;
296 296
297 /* enable endpoints */ 297 /* enable endpoints */
298 logf("setup %s", dev.in->name); 298 logf("setup %s", dev.in->name);