[PATCH 3/9] usb-core: Track if an endpoint has streams

2013-10-09 Thread Hans de Goede
This is a preparation patch for adding support for bulk streams to usbfs. Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/usb/core/hcd.c | 40 +++- include/linux/usb.h| 1 + 2 files changed, 32 insertions(+), 9 deletions(-) diff --git

[PATCH 3/9] usb-core: Track if an endpoint has streams

2013-10-04 Thread Hans de Goede
This is a preparation patch for adding support for bulk streams to usbfs. Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/usb/core/hcd.c | 40 +++- include/linux/usb.h| 1 + 2 files changed, 32 insertions(+), 9 deletions(-) diff --git

Re: [PATCH 3/9] usb-core: Track if an endpoint has streams

2013-10-04 Thread Alan Stern
On Fri, 4 Oct 2013, Hans de Goede wrote: This is a preparation patch for adding support for bulk streams to usbfs. + for (i = 0; i num_eps; i++) + eps[i]-has_streams = 1; --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -71,6 +71,7 @@ struct usb_host_endpoint {

Re: [PATCH 3/9] usb-core: Track if an endpoint has streams

2013-10-04 Thread Hans de Goede
Hi, On 10/04/2013 05:35 PM, Alan Stern wrote: On Fri, 4 Oct 2013, Hans de Goede wrote: This is a preparation patch for adding support for bulk streams to usbfs. + for (i = 0; i num_eps; i++) + eps[i]-has_streams = 1; --- a/include/linux/usb.h +++