diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-05-11 14:23:42 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-06-07 10:02:22 +0200 |
commit | 0703a4a7a67999dfda1a67cb7e0a6b4d2aefb239 (patch) | |
tree | 3f770e05d4d2f6c81ed559e5d632829ed5e34a49 /hw/usb | |
parent | 7acd279f835e9f3b82e98df53b8ff97e2d922bb0 (diff) | |
download | qemu-0703a4a7a67999dfda1a67cb7e0a6b4d2aefb239.zip qemu-0703a4a7a67999dfda1a67cb7e0a6b4d2aefb239.tar.gz qemu-0703a4a7a67999dfda1a67cb7e0a6b4d2aefb239.tar.bz2 |
xhci: trace: ring fetch
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/hcd-xhci.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index 6890888..08fdf94 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -701,10 +701,8 @@ static TRBType xhci_ring_fetch(XHCIState *xhci, XHCIRing *ring, XHCITRB *trb, le32_to_cpus(&trb->status); le32_to_cpus(&trb->control); - DPRINTF("xhci: TRB fetched [" DMA_ADDR_FMT "]: " - "%016" PRIx64 " %08x %08x %s\n", - ring->dequeue, trb->parameter, trb->status, trb->control, - trb_name(trb)); + trace_usb_xhci_fetch_trb(ring->dequeue, trb_name(trb), + trb->parameter, trb->status, trb->control); if ((trb->control & TRB_C) != ring->ccs) { return 0; @@ -743,10 +741,6 @@ static int xhci_ring_chain_length(XHCIState *xhci, const XHCIRing *ring) le32_to_cpus(&trb.status); le32_to_cpus(&trb.control); - DPRINTF("xhci: TRB peeked [" DMA_ADDR_FMT "]: " - "%016" PRIx64 " %08x %08x\n", - dequeue, trb.parameter, trb.status, trb.control); - if ((trb.control & TRB_C) != ccs) { return -length; } |