Changes in uspace/drv/uhci-rhd/port.c [c0cea918:4125b7d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-rhd/port.c
rc0cea918 r4125b7d 89 89 { 90 90 assert(port); 91 asprintf(&port->id_string, "Port (%p - % d)", port, number);91 asprintf(&port->id_string, "Port (%p - %u)", port, number); 92 92 if (port->id_string == NULL) { 93 93 return ENOMEM; … … 115 115 116 116 fibril_add_ready(port->checker); 117 usb_log_debug("%s: Started polling fibril (%x).\n",117 usb_log_debug("%s: Started polling fibril (%" PRIun ").\n", 118 118 port->id_string, port->checker); 119 119 return EOK; … … 267 267 } 268 268 269 usb_log_info("New device at port %u, address %d (handle % llu).\n",269 usb_log_info("New device at port %u, address %d (handle %" PRIun ").\n", 270 270 port->number, dev_addr, port->attached_device); 271 271 return EOK; … … 283 283 int uhci_port_remove_device(uhci_port_t *port) 284 284 { 285 usb_log_error("%s: Don't know how to remove device % llu.\n",285 usb_log_error("%s: Don't know how to remove device %" PRIun ".\n", 286 286 port->id_string, port->attached_device); 287 287 return ENOTSUP;
Note:
See TracChangeset
for help on using the changeset viewer.