]> Git Repo - qemu.git/commitdiff
xhci: add port to slot_address tracepoint
authorGerd Hoffmann <[email protected]>
Wed, 28 Aug 2013 09:46:45 +0000 (11:46 +0200)
committerGerd Hoffmann <[email protected]>
Mon, 2 Sep 2013 09:06:19 +0000 (11:06 +0200)
Signed-off-by: Gerd Hoffmann <[email protected]>
hw/usb/hcd-xhci.c
trace-events

index 83161b9a3da77a5d795acbe033da1af1fd772dba..4d693bcf2ff8e68f10ad2f0f9414e54aff8df7e9 100644 (file)
@@ -2135,7 +2135,6 @@ static TRBCCode xhci_address_slot(XHCIState *xhci, unsigned int slotid,
     int i;
     TRBCCode res;
 
-    trace_usb_xhci_slot_address(slotid);
     assert(slotid >= 1 && slotid <= xhci->numslots);
 
     dcbaap = xhci_addr64(xhci->dcbaap_low, xhci->dcbaap_high);
@@ -2168,6 +2167,7 @@ static TRBCCode xhci_address_slot(XHCIState *xhci, unsigned int slotid,
         fprintf(stderr, "xhci: port not found\n");
         return CC_TRB_ERROR;
     }
+    trace_usb_xhci_slot_address(slotid, uport->path);
 
     dev = uport->dev;
     if (!dev) {
index eb8eaef296fe79c047a4300b44c1e3c061c50948..f8498077f8ed2469926b23ce6a1046ff1899580a 100644 (file)
@@ -371,7 +371,7 @@ usb_xhci_port_link(uint32_t port, uint32_t pls) "port %d, pls %d"
 usb_xhci_port_notify(uint32_t port, uint32_t pls) "port %d, bits %x"
 usb_xhci_slot_enable(uint32_t slotid) "slotid %d"
 usb_xhci_slot_disable(uint32_t slotid) "slotid %d"
-usb_xhci_slot_address(uint32_t slotid) "slotid %d"
+usb_xhci_slot_address(uint32_t slotid, const char *port) "slotid %d, port %s"
 usb_xhci_slot_configure(uint32_t slotid) "slotid %d"
 usb_xhci_slot_evaluate(uint32_t slotid) "slotid %d"
 usb_xhci_slot_reset(uint32_t slotid) "slotid %d"
This page took 0.0543400000000001 seconds and 4 git commands to generate.