Changeset d1d7a92 in mainline for uspace/drv/bus/usb/xhci/bus.c
- Timestamp:
- 2017-10-21T10:34:45Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8ea7459
- Parents:
- 1252e81
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/bus.c
r1252e81 rd1d7a92 187 187 ret_dev->device = dev; 188 188 189 usb_log_ debug("Device(%d) registered to XHCI bus.", dev->address);189 usb_log_info("Device(%d) registered to XHCI bus.", dev->address); 190 190 191 191 hash_table_insert(&bus->devices, &ret_dev->link); … … 202 202 static int hashed_device_remove(xhci_bus_t *bus, hashed_device_t *hashed_dev) 203 203 { 204 usb_log_ debug("Device(%d) released from XHCI bus.", hashed_dev->device->address);204 usb_log_info("Device(%d) released from XHCI bus.", hashed_dev->device->address); 205 205 206 206 hash_table_remove(&bus->devices, &hashed_dev->device->address); … … 229 229 } 230 230 231 usb_log_ debug("Endpoint(%d:%d) registered to XHCI bus.", ep->target.address, ep->target.endpoint);231 usb_log_info("Endpoint(%d:%d) registered to XHCI bus.", ep->target.address, ep->target.endpoint); 232 232 233 233 return xhci_device_add_endpoint(hashed_dev->device, xhci_endpoint_get(ep)); … … 239 239 assert(bus); 240 240 241 usb_log_ debug("Endpoint(%d:%d) released from XHCI bus.", ep->target.address, ep->target.endpoint);241 usb_log_info("Endpoint(%d:%d) released from XHCI bus.", ep->target.address, ep->target.endpoint); 242 242 243 243 hashed_device_t *hashed_dev;
Note:
See TracChangeset
for help on using the changeset viewer.