diff options
author | Gonglei <arei.gonglei@huawei.com> | 2014-06-04 16:31:55 +0800 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-08-29 12:52:14 +0200 |
commit | d733f74c333184179770e4d5017366da4b449cce (patch) | |
tree | ff8d93d4b63b430a20e376d38a5721cf8baa6645 /hw/usb/hcd-xhci.c | |
parent | 53c30545fb34c43c84d62ea1c2b0dc6b53303c34 (diff) | |
download | qemu-d733f74c333184179770e4d5017366da4b449cce.tar.gz qemu-d733f74c333184179770e4d5017366da4b449cce.tar.bz2 qemu-d733f74c333184179770e4d5017366da4b449cce.zip |
usb: add usb host adapters exit trace
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb/hcd-xhci.c')
-rw-r--r-- | hw/usb/hcd-xhci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index a9245d8c2a..bbe4c5fb85 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -3649,6 +3649,8 @@ static void usb_xhci_exit(PCIDevice *dev) int i; XHCIState *xhci = XHCI(dev); + trace_usb_xhci_exit(); + for (i = 0; i < xhci->numslots; i++) { xhci_disable_slot(xhci, i + 1); } |