Changeset 1938b381 in mainline for uspace/drv/bus/usb/xhci/isoch.c
- Timestamp:
- 2018-09-29T15:28:01Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3f7fe9e
- Parents:
- 99170e0c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/isoch.c
r99170e0c r1938b381 331 331 332 332 case WINDOW_INSIDE: 333 usb_log_debug("[isoch] feeding buffer %zu at 0x% llx",333 usb_log_debug("[isoch] feeding buffer %zu at 0x%" PRIx64, 334 334 it - isoch->transfers, it->mfindex); 335 335 it->error = schedule_isochronous_trb(ep, it); … … 349 349 * skipped. 350 350 */ 351 usb_log_debug("[isoch] missed feeding buffer %zu at 0x% llxby "352 "% lluuframes", it - isoch->transfers, it->mfindex, wd.offset);351 usb_log_debug("[isoch] missed feeding buffer %zu at 0x%" PRIx64 " by " 352 "%" PRIu64 " uframes", it - isoch->transfers, it->mfindex, wd.offset); 353 353 it->state = ISOCH_COMPLETE; 354 354 it->error = EOK; … … 422 422 goto out; 423 423 case WINDOW_TOO_LATE: 424 usb_log_debug("[isoch] missed feeding buffer %zu at 0x% llxby"425 "% lluuframes", it - isoch->transfers, it->mfindex, wd.offset);424 usb_log_debug("[isoch] missed feeding buffer %zu at 0x%" PRIx64 " by" 425 "%" PRIu64 " uframes", it - isoch->transfers, it->mfindex, wd.offset); 426 426 /* Missed the opportunity to schedule. Schedule ASAP. */ 427 427 it->mfindex += wd.offset; … … 435 435 isoch->last_mf = it->mfindex; 436 436 437 usb_log_debug("[isoch] feeding buffer %zu at 0x% llx",437 usb_log_debug("[isoch] feeding buffer %zu at 0x%" PRIx64, 438 438 it - isoch->transfers, it->mfindex); 439 439 … … 520 520 calc_next_mfindex(ep, it); 521 521 isoch->last_mf = it->mfindex; 522 usb_log_debug("[isoch] buffer %zu will be on schedule at 0x% llx",522 usb_log_debug("[isoch] buffer %zu will be on schedule at 0x%" PRIx64, 523 523 it - isoch->transfers, it->mfindex); 524 524
Note:
See TracChangeset
for help on using the changeset viewer.