XHCI: Change ADDR print to PHYSADDR to appease GCC.

This commit is contained in:
Augustin Cavalier 2019-06-16 23:08:36 -04:00
parent d511533a48
commit 581a586f95

View File

@ -2409,12 +2409,12 @@ XHCI::HandleTransferComplete(xhci_trb* trb)
release_sem_etc(fFinishTransfersSem, 1, B_DO_NOT_RESCHEDULE);
TRACE("HandleTransferComplete td %p done\n", td);
} else {
TRACE_ERROR("successful TRB 0x%" B_PRIxADDR " was found, but it wasn't "
TRACE_ERROR("successful TRB 0x%" B_PRIxPHYSADDR " was found, but it wasn't "
"the last in the TD!\n", source);
}
return;
}
TRACE_ERROR("TRB 0x%" B_PRIxADDR " was not found in the endpoint!\n", source);
TRACE_ERROR("TRB 0x%" B_PRIxPHYSADDR " was not found in the endpoint!\n", source);
}