Changes in uspace/lib/usb/src/pipesinit.c [2c2cbcf:fa0f53b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/pipesinit.c
r2c2cbcf rfa0f53b 365 365 pipe->direction = direction; 366 366 pipe->refcount = 0; 367 pipe->refcount_soft = 0;368 367 pipe->auto_reset_halt = false; 369 368 … … 420 419 int rc; 421 420 422 usb_pipe_start_long_transfer(pipe); 421 rc = usb_pipe_start_long_transfer(pipe); 422 if (rc != EOK) { 423 return rc; 424 } 425 423 426 424 427 uint8_t dev_descr_start[CTRL_PIPE_MIN_PACKET_SIZE];
Note:
See TracChangeset
for help on using the changeset viewer.