Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xing Lin
qemu
Commits
d829fde9
Commit
d829fde9
authored
Aug 29, 2012
by
Gerd Hoffmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xhci: add trace_usb_xhci_ep_set_dequeue
Signed-off-by:
Gerd Hoffmann
<
kraxel@redhat.com
>
parent
873123fe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
hw/usb/hcd-xhci.c
hw/usb/hcd-xhci.c
+1
-1
trace-events
trace-events
+1
-0
No files found.
hw/usb/hcd-xhci.c
View file @
d829fde9
...
...
@@ -1145,7 +1145,7 @@ static TRBCCode xhci_set_ep_dequeue(XHCIState *xhci, unsigned int slotid,
return
CC_TRB_ERROR
;
}
DPRINTF
(
"xhci_set_ep_dequeue(%d, %d, %016"
PRIx64
")
\n
"
,
slotid
,
epid
,
pdequeue
);
trace_usb_xhci_ep_set_dequeue
(
slotid
,
epid
,
pdequeue
);
dequeue
=
xhci_mask64
(
pdequeue
);
slot
=
&
xhci
->
slots
[
slotid
-
1
];
...
...
trace-events
View file @
d829fde9
...
...
@@ -323,6 +323,7 @@ usb_xhci_slot_evaluate(uint32_t slotid) "slotid %d"
usb_xhci_slot_reset(uint32_t slotid) "slotid %d"
usb_xhci_ep_enable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
usb_xhci_ep_disable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
usb_xhci_ep_set_dequeue(uint32_t slotid, uint32_t epid, uint64_t param) "slotid %d, epid %d, ptr %016" PRIx64
usb_xhci_ep_kick(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
usb_xhci_ep_stop(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
usb_xhci_ep_reset(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment