Re: [PATCH 11/68] usb-core: Track if an endpoint has streams

2013-11-16 Thread Hans de Goede
Hi, On 11/16/2013 08:45 AM, Oliver Neukum wrote: On Fri, 2013-11-15 at 23:26 +0100, Hans de Goede wrote: Hi, On 11/15/2013 11:16 PM, Oliver Neukum wrote: On Fri, 2013-11-15 at 16:06 +0100, Hans de Goede wrote: This is a preparation patch for adding support for bulk streams to usbfs. @@ -2

Re: [PATCH 11/68] usb-core: Track if an endpoint has streams

2013-11-15 Thread Oliver Neukum
On Fri, 2013-11-15 at 23:26 +0100, Hans de Goede wrote: > Hi, > > On 11/15/2013 11:16 PM, Oliver Neukum wrote: > > On Fri, 2013-11-15 at 16:06 +0100, Hans de Goede wrote: > >> This is a preparation patch for adding support for bulk streams to usbfs. > > > >> @@ -2086,19 +2097,30 @@ int usb_free_st

Re: [PATCH 11/68] usb-core: Track if an endpoint has streams

2013-11-15 Thread Hans de Goede
Hi, On 11/15/2013 11:16 PM, Oliver Neukum wrote: On Fri, 2013-11-15 at 16:06 +0100, Hans de Goede wrote: This is a preparation patch for adding support for bulk streams to usbfs. @@ -2086,19 +2097,30 @@ int usb_free_streams(struct usb_interface *interface, { struct usb_hcd *hcd;

Re: [PATCH 11/68] usb-core: Track if an endpoint has streams

2013-11-15 Thread Oliver Neukum
On Fri, 2013-11-15 at 16:06 +0100, Hans de Goede wrote: > This is a preparation patch for adding support for bulk streams to usbfs. > @@ -2086,19 +2097,30 @@ int usb_free_streams(struct usb_interface *interface, > { > struct usb_hcd *hcd; > struct usb_device *dev; > - int i; > +

[PATCH 11/68] usb-core: Track if an endpoint has streams

2013-11-15 Thread Hans de Goede
This is a preparation patch for adding support for bulk streams to usbfs. Signed-off-by: Hans de Goede Signed-off-by: Sarah Sharp --- drivers/usb/core/hcd.c | 40 +++- include/linux/usb.h| 2 ++ 2 files changed, 33 insertions(+), 9 deletions(-) diff --g