projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d80365
)
Revert "xhci: Fix number of streams allocated when using streams"
author
Gerd Hoffmann
<kraxel@redhat.com>
Fri, 29 Aug 2014 10:40:55 +0000
(12:40 +0200)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Fri, 29 Aug 2014 10:51:44 +0000
(12:51 +0200)
This reverts commit
d063c3112c4cd23a479ee18720c2bd119da2d315
.
"2 << x" is the same as "2 ^ (x + 1)", so the old code is correct.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/usb/hcd-xhci.c
patch
|
blob
|
history
diff --git
a/hw/usb/hcd-xhci.c
b/hw/usb/hcd-xhci.c
index f7f9fed73712243fb6fcc1aa9f1feaf94c764ff8..88660e85b789622ce34de984af341480e614b307 100644
(file)
--- a/
hw/usb/hcd-xhci.c
+++ b/
hw/usb/hcd-xhci.c
@@
-1151,7
+1151,7
@@
static void xhci_reset_streams(XHCIEPContext *epctx)
static void xhci_alloc_streams(XHCIEPContext *epctx, dma_addr_t base)
{
assert(epctx->pstreams == NULL);
- epctx->nr_pstreams = 2 <<
(epctx->max_pstreams + 1)
;
+ epctx->nr_pstreams = 2 <<
epctx->max_pstreams
;
epctx->pstreams = xhci_alloc_stream_contexts(epctx->nr_pstreams, base);
}