Re: [Qemu-devel] [PATCH] xhci: Fix number of streams allocated when using streams

2013-09-16 Thread Gerd Hoffmann
On Mo, 2013-09-16 at 17:04 +0200, Hans de Goede wrote: > According to the xhci spec the total number of streams is > 2 ^ (MaxPStreams + 1), and this is also how the Linux xhci driver > uses this field. Added to usb patch queue. thanks, Gerd

[Qemu-devel] [PATCH] xhci: Fix number of streams allocated when using streams

2013-09-16 Thread Hans de Goede
According to the xhci spec the total number of streams is 2 ^ (MaxPStreams + 1), and this is also how the Linux xhci driver uses this field. Signed-off-by: Hans de Goede --- hw/usb/hcd-xhci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.