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