summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2012-10-24 16:19:21 +0200
committerDoug Goldstein <cardoe@cardoe.com>2012-11-21 15:28:51 -0600
commita3af4fdfa20f6815753e18793d6cdd04f641a914 (patch)
treed90fb6d7d92ba3f977f99d73e55049685eb06c92
parenttarget-sparc64: disable VGA cirrus (diff)
downloadqemu-kvm-a3af4fdfa20f6815753e18793d6cdd04f641a914.tar.gz
qemu-kvm-a3af4fdfa20f6815753e18793d6cdd04f641a914.tar.bz2
qemu-kvm-a3af4fdfa20f6815753e18793d6cdd04f641a914.zip
xhci: fix usb name in caps
Used to be "UTB" not "USB". Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> (cherry picked from commit 0ebfb144e8ad3f2da436d630fdcc5aa9ab646341)
-rw-r--r--hw/usb/hcd-xhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
index 5cf1a6469..10be478ce 100644
--- a/hw/usb/hcd-xhci.c
+++ b/hw/usb/hcd-xhci.c
@@ -2372,7 +2372,7 @@ static uint32_t xhci_cap_read(XHCIState *xhci, uint32_t reg)
return 0x02000002; /* USB 2.0 */
#endif
case 0x24: /* Supported Protocol:04 */
- return 0x20425455; /* "USB " */
+ return 0x20425355; /* "USB " */
case 0x28: /* Supported Protocol:08 */
return 0x00000001 | (USB2_PORTS<<8);
case 0x2c: /* Supported Protocol:0c */
@@ -2381,7 +2381,7 @@ static uint32_t xhci_cap_read(XHCIState *xhci, uint32_t reg)
case 0x30: /* Supported Protocol:00 */
return 0x03000002; /* USB 3.0 */
case 0x34: /* Supported Protocol:04 */
- return 0x20425455; /* "USB " */
+ return 0x20425355; /* "USB " */
case 0x38: /* Supported Protocol:08 */
return 0x00000000 | (USB2_PORTS+1) | (USB3_PORTS<<8);
case 0x3c: /* Supported Protocol:0c */