diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-08-30 12:42:32 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-09-11 07:43:01 +0200 |
commit | 8e9f18b6db1cd67f0a7efd7d0285bee489445197 (patch) | |
tree | 0b24661ea3568b2c3d3fc3cf4d4ab4be32f03295 | |
parent | d829fde97d25bfa5ec62d21d28ed32991e56ffc7 (diff) | |
download | hqemu-8e9f18b6db1cd67f0a7efd7d0285bee489445197.zip hqemu-8e9f18b6db1cd67f0a7efd7d0285bee489445197.tar.gz |
xhci: fix runtime write tracepoint
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | hw/usb/hcd-xhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index 9521126..1920eda 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -2518,7 +2518,7 @@ static uint32_t xhci_runtime_read(XHCIState *xhci, uint32_t reg) static void xhci_runtime_write(XHCIState *xhci, uint32_t reg, uint32_t val) { - trace_usb_xhci_runtime_read(reg, val); + trace_usb_xhci_runtime_write(reg, val); switch (reg) { case 0x20: /* IMAN */ |