Changeset 1938b381 in mainline
- Timestamp:
- 2018-09-29T15:28:01Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3f7fe9e
- Parents:
- 99170e0c
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/debug.c
r99170e0c r1938b381 363 363 { 364 364 #define EP_DUMP_DW(name) usb_log_debug("\t" #name ":\t0x%x", XHCI_EP_##name(*ctx)) 365 #define EP_DUMP_QW(name) usb_log_debug("\t" #name ":\t0x% llx", XHCI_EP_##name(*ctx))365 #define EP_DUMP_QW(name) usb_log_debug("\t" #name ":\t0x%" PRIx64, XHCI_EP_##name(*ctx)) 366 366 EP_DUMP_DW(STATE); 367 367 EP_DUMP_DW(MULT); -
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 -
uspace/srv/fs/exfat/exfat_ops.c
r99170e0c r1938b381 1239 1239 printf("Version: %d.%d\n", bs->version.major, bs->version.minor); 1240 1240 printf("Volume serial: %d\n", uint32_t_le2host(bs->volume_serial)); 1241 printf("Volume first sector: % lld\n", VOL_FS(bs));1242 printf("Volume sectors: % lld\n", VOL_CNT(bs));1241 printf("Volume first sector: %" PRId64 "\n", VOL_FS(bs)); 1242 printf("Volume sectors: %" PRId64 "\n", VOL_CNT(bs)); 1243 1243 printf("FAT first sector: %d\n", FAT_FS(bs)); 1244 1244 printf("FAT sectors: %d\n", FAT_CNT(bs));
Note:
See TracChangeset
for help on using the changeset viewer.