Re: Announcing libusb-1.0.18 (as well as libusbx-1.0.18 *FINAL*)

2014-01-25 Thread Peter Stuge
Hi all, I've removed the libusbx-devel list since Pete Batard banned[1] me after I wrote that I considered the libusbx code to have a bug[2]. Pete Batard wrote: > It is my great pleasure The "hostile fork"[3] is a success; you can now call libusbx libusb, since Nathan Hjelm removed me from the

RE: [PATCH] usb: chipidea: udc: fix setup_status condition in isr

2014-01-25 Thread Peter Chen
> > The isr is going to check for a status phase on the indexed endpoint. > > Input endpoints have no status bits and can be skipped for that test. > > > > Signed-off-by: Michael Grzeschik > > --- > > This patch is based on the change mentioned by Matthieu CASTET, > > but moves the check before

Announcing libusb-1.0.18 (as well as libusbx-1.0.18 *FINAL*)

2014-01-25 Thread Pete Batard
Hi, It is my great pleasure to announce the release of libusb 1.0.18 (as well as the simultaneous final release of libusbx 1.0.18), which marks the long awaited merging back of libusbx with libusb! With this release, we are finally consolidating the two projects back into one, and bringing t

[PATCH] usb: core: Fix potential memory leak adding dyn USBdevice IDs

2014-01-25 Thread Christian Engelmayer
Fix a memory leak in the usb_store_new_id() error paths. When bailing out due to sanity checks, the function left the already allocated usb_dynid struct in place. Detected by Coverity: CID 1162604. Signed-off-by: Christian Engelmayer --- This patch addresses a regression introduced in the follow

Re: [PATCH] usb: phy: Quiet unable to find transceiver message

2014-01-25 Thread Josh Boyer
On Sat, Jan 25, 2014 at 10:37 AM, Alan Stern wrote: > On Sat, 25 Jan 2014, Josh Boyer wrote: > >> commit 1ae5799ef6317 ("usb: hcd: Initialize USB phy if needed") allows >> the USB layer to initialize external PHYs if needed. However, a PHY is >> not needed in all cases. The usb_get_phy_device fu

Re: [PATCH] usb: phy: Quiet unable to find transceiver message

2014-01-25 Thread Alan Stern
On Sat, 25 Jan 2014, Josh Boyer wrote: > commit 1ae5799ef6317 ("usb: hcd: Initialize USB phy if needed") allows > the USB layer to initialize external PHYs if needed. However, a PHY is > not needed in all cases. The usb_get_phy_device function will print > an error message, "unable to find trans

[PATCH] usb: phy: Quiet unable to find transceiver message

2014-01-25 Thread Josh Boyer
commit 1ae5799ef6317 ("usb: hcd: Initialize USB phy if needed") allows the USB layer to initialize external PHYs if needed. However, a PHY is not needed in all cases. The usb_get_phy_device function will print an error message, "unable to find transceiver" but everything still functions normally.