summaryrefslogtreecommitdiff
path: root/firmware/drivers/isp1583.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/isp1583.c')
-rw-r--r--firmware/drivers/isp1583.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/firmware/drivers/isp1583.c b/firmware/drivers/isp1583.c
index 2d986384e6..9e7d601278 100644
--- a/firmware/drivers/isp1583.c
+++ b/firmware/drivers/isp1583.c
@@ -55,7 +55,7 @@ struct usb_endpoint
55}; 55};
56 56
57static unsigned char setup_pkt_buf[8]; 57static unsigned char setup_pkt_buf[8];
58static struct usb_endpoint endpoints[NUM_ENDPOINTS]; 58static struct usb_endpoint endpoints[USB_NUM_ENDPOINTS];
59 59
60static bool high_speed_mode = false; 60static bool high_speed_mode = false;
61 61
@@ -366,7 +366,7 @@ static void setup_endpoints(void)
366 usb_setup_endpoint(ep_index(0, DIR_TX), 64, 0); 366 usb_setup_endpoint(ep_index(0, DIR_TX), 64, 0);
367 367
368 int i; 368 int i;
369 for(i = 1; i < NUM_ENDPOINTS-1; i++) 369 for(i = 1; i < USB_NUM_ENDPOINTS-1; i++)
370 { 370 {
371 usb_setup_endpoint(ep_index(i, DIR_RX), (high_speed_mode ? 512 : 64), 2); /* 2 = TYPE_BULK */ 371 usb_setup_endpoint(ep_index(i, DIR_RX), (high_speed_mode ? 512 : 64), 2); /* 2 = TYPE_BULK */
372 usb_setup_endpoint(ep_index(i, DIR_TX), (high_speed_mode ? 512 : 64), 2); 372 usb_setup_endpoint(ep_index(i, DIR_TX), (high_speed_mode ? 512 : 64), 2);
@@ -375,7 +375,7 @@ static void setup_endpoints(void)
375 usb_enable_endpoint(ep_index(0, DIR_RX)); 375 usb_enable_endpoint(ep_index(0, DIR_RX));
376 usb_enable_endpoint(ep_index(0, DIR_TX)); 376 usb_enable_endpoint(ep_index(0, DIR_TX));
377 377
378 for (i = 1; i < NUM_ENDPOINTS-1; i++) 378 for (i = 1; i < USB_NUM_ENDPOINTS-1; i++)
379 { 379 {
380 usb_enable_endpoint(ep_index(i, DIR_RX)); 380 usb_enable_endpoint(ep_index(i, DIR_RX));
381 usb_enable_endpoint(ep_index(i, DIR_TX)); 381 usb_enable_endpoint(ep_index(i, DIR_TX));
@@ -598,7 +598,7 @@ void usb_drv_cancel_all_transfers(void)
598 logf("usb_drv_cancel_all_tranfers()"); 598 logf("usb_drv_cancel_all_tranfers()");
599 int i; 599 int i;
600 600
601 for(i=0;i<NUM_ENDPOINTS-1;i++) 601 for(i=0;i<USB_NUM_ENDPOINTS-1;i++)
602 endpoints[i].halt[0] = endpoints[i].halt[1] = 1; 602 endpoints[i].halt[0] = endpoints[i].halt[1] = 1;
603} 603}
604 604
@@ -608,7 +608,7 @@ int usb_drv_request_endpoint(int dir)
608 608
609 bit=(dir & USB_DIR_IN)? 2:1; 609 bit=(dir & USB_DIR_IN)? 2:1;
610 610
611 for (i=1; i < NUM_ENDPOINTS; i++) { 611 for (i=1; i < USB_NUM_ENDPOINTS; i++) {
612 if((endpoints[i].allocation & bit)!=0) 612 if((endpoints[i].allocation & bit)!=0)
613 continue; 613 continue;
614 endpoints[i].allocation |= bit; 614 endpoints[i].allocation |= bit;
@@ -738,7 +738,7 @@ void usb_drv_set_address(int address)
738 738
739int dbg_usb_num_items(void) 739int dbg_usb_num_items(void)
740{ 740{
741 return 2+NUM_ENDPOINTS*2; 741 return 2+USB_NUM_ENDPOINTS*2;
742} 742}
743 743
744char* dbg_usb_item(int selected_item, void *data, char *buffer, size_t buffer_len) 744char* dbg_usb_item(int selected_item, void *data, char *buffer, size_t buffer_len)