mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-18 23:52:14 -06:00
Revert "xhci: Fix number of streams allocated when using streams"
This reverts commit d063c3112c
.
"2 << x" is the same as "2 ^ (x + 1)", so the old code is correct.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
3d80365b55
commit
f90e160b50
1 changed files with 1 additions and 1 deletions
|
@ -1151,7 +1151,7 @@ static void xhci_reset_streams(XHCIEPContext *epctx)
|
||||||
static void xhci_alloc_streams(XHCIEPContext *epctx, dma_addr_t base)
|
static void xhci_alloc_streams(XHCIEPContext *epctx, dma_addr_t base)
|
||||||
{
|
{
|
||||||
assert(epctx->pstreams == NULL);
|
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);
|
epctx->pstreams = xhci_alloc_stream_contexts(epctx->nr_pstreams, base);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue