Changeset 33577f81 in mainline for uspace/lib/usb/src/devdrv.c
- Timestamp:
- 2011-03-20T22:28:20Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 00c18bc, fa8f1f7
- Parents:
- e7bc999 (diff), fd9f6e4c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/devdrv.c
re7bc999 r33577f81 206 206 * @return Error code. 207 207 */ 208 static int initialize_pipes(usb_d river_t *drv, usb_device_t *dev)208 static int initialize_pipes(usb_device_t *dev) 209 209 { 210 210 int rc; … … 284 284 dev->driver_data = NULL; 285 285 286 rc = initialize_pipes(d river, dev);286 rc = initialize_pipes(dev); 287 287 if (rc != EOK) { 288 288 free(dev);
Note:
See TracChangeset
for help on using the changeset viewer.