c8dfc65f53
- Add support for Spice seamless migration - Add support for Spice dynamic monitors - Add support for usb-redir live migration
27 lines
785 B
Diff
27 lines
785 B
Diff
From 9c1e6303c5c86f20ed083a0ed9c829c08fd2ac06 Mon Sep 17 00:00:00 2001
|
|
From: Gerd Hoffmann <kraxel@redhat.com>
|
|
Date: Thu, 30 Aug 2012 12:42:32 +0200
|
|
Subject: [PATCH 338/366] xhci: fix runtime write tracepoint
|
|
|
|
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
---
|
|
hw/usb/hcd-xhci.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
|
|
index 5cdaf76..e8d2372 100644
|
|
--- a/hw/usb/hcd-xhci.c
|
|
+++ b/hw/usb/hcd-xhci.c
|
|
@@ -2520,7 +2520,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 */
|
|
--
|
|
1.7.12
|
|
|