usb-redir: Enable pipelining for bulk endpoints

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
master
Hans de Goede 2012-09-03 13:44:04 +02:00 committed by Gerd Hoffmann
parent a508cc42e2
commit 6c67446a42
1 changed files with 3 additions and 0 deletions

View File

@ -1197,6 +1197,9 @@ static void usbredir_ep_info(void *priv,
usb_redir_cap_ep_info_max_packet_size)) {
usb_ep->max_packet_size = ep_info->max_packet_size[i];
}
if (ep_info->type[i] == usb_redir_type_bulk) {
usb_ep->pipeline = true;
}
}
}