Changes in uspace/lib/usbdev/src/pipes.c [a76b01b4:01086cfe] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/pipes.c
ra76b01b4 r01086cfe 54 54 return usb_hc_connection_open(pipe->wire->hc_connection); 55 55 } 56 56 /*----------------------------------------------------------------------------*/ 57 57 /** Terminate a long transfer on a pipe. 58 58 * @param pipe Pipe where to end the long transfer. … … 67 67 return usb_hc_connection_close(pipe->wire->hc_connection); 68 68 } 69 69 /*----------------------------------------------------------------------------*/ 70 70 /** Try to clear endpoint halt of default control pipe. 71 71 * … … 85 85 pipe->auto_reset_halt = true; 86 86 } 87 87 /*----------------------------------------------------------------------------*/ 88 88 /** Request a control read transfer on an endpoint pipe. 89 89 * … … 135 135 return rc; 136 136 } 137 137 /*----------------------------------------------------------------------------*/ 138 138 /** Request a control write transfer on an endpoint pipe. 139 139 * … … 182 182 return rc; 183 183 } 184 184 /*----------------------------------------------------------------------------*/ 185 185 /** Request a read (in) transfer on an endpoint pipe. 186 186 * … … 227 227 return rc; 228 228 } 229 229 /*----------------------------------------------------------------------------*/ 230 230 /** Request a write (out) transfer on an endpoint pipe. 231 231 * … … 259 259 pipe->endpoint_no, buffer, size); 260 260 } 261 261 /*----------------------------------------------------------------------------*/ 262 262 /** Initialize USB endpoint pipe. 263 263 * … … 287 287 return EOK; 288 288 } 289 289 /*----------------------------------------------------------------------------*/ 290 290 /** Initialize USB endpoint pipe as the default zero control pipe. 291 291 * … … 307 307 return rc; 308 308 } 309 309 /*----------------------------------------------------------------------------*/ 310 310 /** Register endpoint with the host controller. 311 311 * … … 323 323 pipe->direction, pipe->max_packet_size, interval); 324 324 } 325 325 /*----------------------------------------------------------------------------*/ 326 326 /** Revert endpoint registration with the host controller. 327 327 *
Note:
See TracChangeset
for help on using the changeset viewer.