Changes in uspace/lib/usb/src/devpoll.c [3954a63b:7f2e33a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/devpoll.c
r3954a63b r7f2e33a 66 66 usb_pipe_t *pipe 67 67 = polling_data->dev->pipes[polling_data->pipe_index].pipe; 68 69 usb_log_debug("Pipe interface number: %d, protocol: %d, subclass: %d, max packet size: %d\n", 70 polling_data->dev->pipes[polling_data->pipe_index].interface_no, 71 polling_data->dev->pipes[polling_data->pipe_index].description->interface_protocol, 72 polling_data->dev->pipes[polling_data->pipe_index].description->interface_subclass, 73 pipe->max_packet_size); 68 74 69 75 size_t failed_attempts = 0; … … 83 89 /* Quit the session regardless of errors. */ 84 90 usb_pipe_end_session(pipe); 91 92 // if (rc == ESTALL) { 93 // usb_log_debug("Seding clear feature...\n"); 94 // usb_request_clear_feature(pipe, USB_REQUEST_TYPE_STANDARD, 95 // USB_REQUEST_RECIPIENT_ENDPOINT, 0, pipe->endpoint_no); 96 // continue; 97 // } 85 98 86 99 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.