diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-05-11 14:54:57 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-06-07 10:02:21 +0200 |
commit | fc0ddaca33c3b4b9bf52cb15b62bdb17b84d9fa8 (patch) | |
tree | f03b2b008488835a77f0b2736747b6680fe60194 /hw/usb | |
parent | 2d754a10e4c43e9d83013ac83f8df7d1c856f0a0 (diff) |
xhci: trace: run+stop
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/hcd-xhci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index 84d714a609..43875aabf9 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -813,14 +813,13 @@ static void xhci_er_reset(XHCIState *xhci) static void xhci_run(XHCIState *xhci) { - DPRINTF("xhci_run()\n"); - + trace_usb_xhci_run(); xhci->usbsts &= ~USBSTS_HCH; } static void xhci_stop(XHCIState *xhci) { - DPRINTF("xhci_stop()\n"); + trace_usb_xhci_stop(); xhci->usbsts |= USBSTS_HCH; xhci->crcr_low &= ~CRCR_CRR; } |