9ae3a8
From 95fb890f69399c3c8bc59c1ae64851632247e804 Mon Sep 17 00:00:00 2001
9ae3a8
From: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Date: Thu, 12 Sep 2013 09:39:29 +0200
9ae3a8
Subject: [PATCH 01/25] xhci: fix endpoint interval calculation
9ae3a8
9ae3a8
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Message-id: <1378978772-21612-2-git-send-email-kraxel@redhat.com>
9ae3a8
Patchwork-id: 54338
9ae3a8
O-Subject: [RHEL-7 qemu-kvm PATCH 1/4] xhci: fix endpoint interval calculation
9ae3a8
Bugzilla: 1001604
9ae3a8
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
RH-Acked-by: Hans de Goede <hdegoede@redhat.com>
9ae3a8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
9ae3a8
Cc: qemu-stable@nongnu.org
9ae3a8
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
(cherry picked from commit ca7162782a293f525633e5816470498dd86a51cf)
9ae3a8
---
9ae3a8
 hw/usb/hcd-xhci.c | 2 +-
9ae3a8
 1 file changed, 1 insertion(+), 1 deletion(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 hw/usb/hcd-xhci.c |    2 +-
9ae3a8
 1 files changed, 1 insertions(+), 1 deletions(-)
9ae3a8
9ae3a8
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
9ae3a8
index 233f3b6..55bcfc4 100644
9ae3a8
--- a/hw/usb/hcd-xhci.c
9ae3a8
+++ b/hw/usb/hcd-xhci.c
9ae3a8
@@ -1241,7 +1241,7 @@ static void xhci_init_epctx(XHCIEPContext *epctx,
9ae3a8
         epctx->ring.ccs = ctx[2] & 1;
9ae3a8
     }
9ae3a8
 
9ae3a8
-    epctx->interval = 1 << (ctx[0] >> 16) & 0xff;
9ae3a8
+    epctx->interval = 1 << ((ctx[0] >> 16) & 0xff);
9ae3a8
 }
9ae3a8
 
9ae3a8
 static TRBCCode xhci_enable_ep(XHCIState *xhci, unsigned int slotid,
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8