summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter D'Hoye <peter.dhoye@gmail.com>2007-08-29 00:47:04 +0000
committerPeter D'Hoye <peter.dhoye@gmail.com>2007-08-29 00:47:04 +0000
commit52a60df47e8d1584f2694872c97eff6898ec5a94 (patch)
tree71dfa703828b7aaccf586ed7cd2fc5429f2aef93
parent5f59f9455443dbdce606ee091c10c99eab87c5b0 (diff)
downloadrockbox-52a60df47e8d1584f2694872c97eff6898ec5a94.tar.gz
rockbox-52a60df47e8d1584f2694872c97eff6898ec5a94.zip
code police part two (/me blames his editor)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14500 a1c6a512-1295-4272-9138-f99709370657
-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);