Changeset 8a637a4 in mainline for uspace/lib/usbhost
- Timestamp:
- 2015-09-30T17:47:41Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1f7584
- Parents:
- a955fcc
- Location:
- uspace/lib/usbhost/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/src/usb_device_manager.c
ra955fcc r8a637a4 150 150 if (instance->devices[address].handle != 0) { 151 151 fibril_mutex_unlock(&instance->guard); 152 return EEXIST S;152 return EEXIST; 153 153 } 154 154 instance->devices[address].handle = handle; -
uspace/lib/usbhost/src/usb_endpoint_manager.c
ra955fcc r8a637a4 253 253 if (endpoint != NULL) { 254 254 fibril_mutex_unlock(&instance->guard); 255 return EEXIST S;255 return EEXIST; 256 256 } 257 257 list_append(&ep->link, get_list(instance, ep->address)); … … 339 339 if (ep != NULL) { 340 340 fibril_mutex_unlock(&instance->guard); 341 return EEXIST S;341 return EEXIST; 342 342 } 343 343
Note:
See TracChangeset
for help on using the changeset viewer.