diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-05-09 17:06:36 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-06-07 10:02:22 +0200 |
commit | eb36a88e6b3a93001ba224aab5e631d251acae65 (patch) | |
tree | db3ce633afb322abb59f7ca915b4e971eb831c4e /trace-events | |
parent | 348f10374ac50b2e4511764fc5fae7cacef95ffa (diff) | |
download | qemu-eb36a88e6b3a93001ba224aab5e631d251acae65.zip qemu-eb36a88e6b3a93001ba224aab5e631d251acae65.tar.gz qemu-eb36a88e6b3a93001ba224aab5e631d251acae65.tar.bz2 |
ehci: add EHCIPacket
Add a separate EHCIPacket struct and move fields over from EHCIQueue.
Preparing for supporting multiple packets per queue being in flight at
the same time. No functional changes yet.
Fix some codestyle issues along the way.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 293eddb..f70523c 100644 --- a/trace-events +++ b/trace-events @@ -257,6 +257,7 @@ usb_ehci_port_detach(uint32_t port) "detach port #%d" usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d" usb_ehci_data(int rw, uint32_t cpage, uint32_t offset, uint32_t addr, uint32_t len, uint32_t bufpos) "write %d, cpage %d, offset 0x%03x, addr 0x%08x, len %d, bufpos %d" usb_ehci_queue_action(void *q, const char *action) "q %p: %s" +usb_ehci_packet_action(void *q, void *p, const char *action) "q %p p %p: %s" # hw/usb/hcd-uhci.c usb_uhci_reset(void) "=== RESET ===" |