Changeset 5d1db18 in mainline
- Timestamp:
- 2011-03-21T14:25:06Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5971dd3
- Parents:
- 7d6a676
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ohci/hc.c
r7d6a676 r5d1db18 100 100 ret = usb_hc_new_device_wrapper(dev, &conn, USB_SPEED_FULL, dummy_reset, 101 101 0, instance, &address, &handle, NULL, NULL, NULL); 102 CHECK_RET_RETURN(ret, "Failed to add rh device.\n"); 102 if (ret != EOK) { 103 usb_log_error("Failed to add rh device.\n"); 104 instance->rh.address = -1; 105 return ret; 106 } 103 107 104 108 ret = usb_hc_connection_close(&conn);
Note:
See TracChangeset
for help on using the changeset viewer.