Changeset e231d26 in mainline
- Timestamp:
- 2011-09-27T18:39:12Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f3744d
- Parents:
- 747a1e71
- Location:
- uspace/drv/bus/usb/usbhub
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/port.c
r747a1e71 re231d26 224 224 if (rc != EOK) { 225 225 usb_log_error( 226 "Failed to set port % dpower after OC:"226 "Failed to set port %zu power after OC:" 227 227 " %s.\n", port->port_number, str_error(rc)); 228 228 } … … 306 306 if (rc != EOK) { 307 307 usb_log_error( 308 "Failed to clear port % dreset change feature: %s.\n",308 "Failed to clear port %zu reset change feature: %s.\n", 309 309 port->port_number, str_error(rc)); 310 310 } -
uspace/drv/bus/usb/usbhub/usbhub.c
r747a1e71 re231d26 307 307 const size_t configuration_count = 308 308 usb_device->descriptors.device.configuration_count; 309 usb_log_debug("Hub has % dconfigurations.\n", configuration_count);309 usb_log_debug("Hub has %zu configurations.\n", configuration_count); 310 310 311 311 if (configuration_count < 1) { … … 358 358 usb_log_warning( 359 359 "HUB OVER-CURRENT GONE: Cannot power on " 360 "port % d; %s\n",360 "port %zu; %s\n", 361 361 port, str_error(opResult)); 362 362 }
Note:
See TracChangeset
for help on using the changeset viewer.