Changeset 598733c9 in mainline
- Timestamp:
- 2018-01-13T10:44:51Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bf601313
- Parents:
- 837581fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
r837581fd r598733c9 507 507 } 508 508 509 usb_log_debug2("Polled status: %x", hc,*status);509 usb_log_debug2("Polled status: %x", *status); 510 510 return EOK; 511 511 } … … 513 513 static int xhci_handle_mfindex_wrap_event(xhci_hc_t *hc, xhci_trb_t *trb) 514 514 { 515 usb_log_debug2("Microframe index wrapped.", hc, *status);516 515 struct timeval tv; 517 516 getuptime(&tv); 517 usb_log_debug2("Microframe index wrapped (@%lu.%li, %"PRIu64" total).", tv.tv_sec, tv.tv_usec, hc->wrap_count); 518 518 hc->wrap_time = ((uint64_t) tv.tv_sec) * 1000000 + ((uint64_t) tv.tv_usec); 519 519 ++hc->wrap_count;
Note:
See TracChangeset
for help on using the changeset viewer.