Changes in uspace/drv/bus/usb/vhc/hub/hub.c [b7fd2a0:5a6cc679] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/hub/hub.c
rb7fd2a0 r5a6cc679 231 231 } 232 232 233 usb_log_debug("Setting port %zu to state %d. \n", port_index, state);233 usb_log_debug("Setting port %zu to state %d.", port_index, state); 234 234 235 235 switch (state) { … … 423 423 uint16_t old_value = port->status_change; 424 424 port->status_change |= change; 425 usb_log_debug("Changing status change on %zu: %04x => %04x \n",425 usb_log_debug("Changing status change on %zu: %04x => %04x", 426 426 port->index, 427 427 (unsigned int) old_value, (unsigned int) port->status_change); … … 510 510 fid_t fibril = fibril_create(set_port_state_delayed_fibril, change); 511 511 if (fibril == 0) { 512 printf("Failed to create fibril\n");512 usb_log_error("Failed to create fibril."); 513 513 free(change); 514 514 return;
Note:
See TracChangeset
for help on using the changeset viewer.