Changeset c86ca9a in mainline for uspace/lib/usbhost/src/usb_bus.c
- Timestamp:
- 2015-06-29T00:35:29Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 68a61f19
- Parents:
- 92900e2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/src/usb_bus.c
r92900e2 rc86ca9a 34 34 35 35 #include <usb/host/usb_bus.h> 36 #include <usb/debug.h> 36 37 37 38 #include <assert.h> … … 244 245 245 246 instance->free_bw -= ep->bandwidth; 247 usb_log_debug("Registered EP(%d:%d:%s:%s)\n", ep->address, ep->endpoint, 248 usb_str_transfer_type_short(ep->transfer_type), 249 usb_str_direction(ep->direction)); 246 250 fibril_mutex_unlock(&instance->guard); 247 251 return EOK; … … 267 271 list_remove(&ep->link); 268 272 instance->free_bw += ep->bandwidth; 273 usb_log_debug("Unregistered EP(%d:%d:%s:%s)\n", ep->address, 274 ep->endpoint, usb_str_transfer_type_short(ep->transfer_type), 275 usb_str_direction(ep->direction)); 269 276 fibril_mutex_unlock(&instance->guard); 270 277 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.