Re: [PATCH 1/2] usb: chipidea: usbmisc: Add support for i.MX27/i.MX31 CPUs

2013-11-10 Thread Alexander Shiyan
Hello. > On Sunday, November 10, 2013 03:18 PM, Alexander Shiyan wrote: > > This adds i.MX27 and i.MX31 as the next user of the usbmisc driver. > > > > Signed-off-by: Alexander Shiyan > > --- > > drivers/usb/chipidea/usbmisc_imx.c | 42 > >

Re: [PATCH 1/2] usb: chipidea: usbmisc: Add support for i.MX27/i.MX31 CPUs

2013-11-10 Thread Chris Ruehl
On Monday, November 11, 2013 01:47 PM, Alexander Shiyan wrote: On Monday, November 11, 2013 12:45 PM, Alexander Shiyan wrote: Hi Alexander, On Sunday, November 10, 2013 03:18 PM, Alexander Shiyan wrote: This adds i.MX27 and i.MX31 as the next user of the usbmisc driver. Signed-off-by: Alexand

Re: [PATCH 1/2] usb: chipidea: usbmisc: Add support for i.MX27/i.MX31 CPUs

2013-11-10 Thread Alexander Shiyan
> On Monday, November 11, 2013 12:45 PM, Alexander Shiyan wrote: > >> Hi Alexander, > >> > >> On Sunday, November 10, 2013 03:18 PM, Alexander Shiyan wrote: > >>> This adds i.MX27 and i.MX31 as the next user of the usbmisc driver. > >>> > >>> Signed-off-by: Alexander Shiyan > >>> --- > >>>drive

Re: [PATCH 1/2] usb: chipidea: usbmisc: Add support for i.MX27/i.MX31 CPUs

2013-11-10 Thread Chris Ruehl
On Monday, November 11, 2013 12:45 PM, Alexander Shiyan wrote: Hi Alexander, On Sunday, November 10, 2013 03:18 PM, Alexander Shiyan wrote: This adds i.MX27 and i.MX31 as the next user of the usbmisc driver. Signed-off-by: Alexander Shiyan --- drivers/usb/chipidea/usbmisc_imx.c | 42 +

Re: [PATCH 1/2] usb: chipidea: usbmisc: Add support for i.MX27/i.MX31 CPUs

2013-11-10 Thread Alexander Shiyan
> Hi Alexander, > > On Sunday, November 10, 2013 03:18 PM, Alexander Shiyan wrote: > > This adds i.MX27 and i.MX31 as the next user of the usbmisc driver. > > > > Signed-off-by: Alexander Shiyan > > --- > > drivers/usb/chipidea/usbmisc_imx.c | 42 > > ++ > >

Re: [PATCH 2/2] check quirk to pad epout buf size when not aligned to maxpacketsize

2013-11-10 Thread David Cohen
Hi Michal, On 11/10/2013 08:50 AM, Michal Nazarewicz wrote: > From: Michal Nazarewicz > > Check gadget.quirk_ep_out_aligned_size to decide if buffer size requires > to be aligned to maxpacketsize of an out endpoint. ffs_epfile_io() needs > to pad epout buffer to match above condition if quirk i

[PATCH] usbnet: fix race condition caused spinlock bad magic issue

2013-11-10 Thread wangbiao
From: wang, biao Date: Mon, 11 Nov 2013 10:23:40 +0800 Subject: [PATCH] usbnet: fix race condition caused spinlock bad magic issue there is race between usbnet_terminate_urbs and usbnet_bh, when unlink_wakeup used in usbnet_bh, it may be already freed and used by other function as unlink_wakeup w

Re: [PATCH 1/2] usb: chipidea: usbmisc: Add support for i.MX27/i.MX31 CPUs

2013-11-10 Thread Chris Ruehl
Hi Alexander, On Sunday, November 10, 2013 03:18 PM, Alexander Shiyan wrote: This adds i.MX27 and i.MX31 as the next user of the usbmisc driver. Signed-off-by: Alexander Shiyan --- drivers/usb/chipidea/usbmisc_imx.c | 42 ++ 1 file changed, 42 insertions(+

Re: [pandaboard] OTG port not working

2013-11-10 Thread Alan Ott
On 11/10/2013 06:14 PM, Tobias Jakobi wrote: Since suggested by gregkh, here a CC. Typically you're going to get a better response on mailing lists if you give a little more information. Start with the following: 1. What kernel are you using? 2. Which gadget are you trying to use (assumed fr

[pandaboard] OTG port not working

2013-11-10 Thread Tobias Jakobi
Since suggested by gregkh, here a CC. Greets, Tobias -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] drivers: usb: goku: remove unused argument

2013-11-10 Thread Michal Nazarewicz
From: Michal Nazarewicz The stop_activity function never uses driver argument (even though it modifies it) and thus it is safe to remove it. Signed-off-by: Michal Nazarewicz --- drivers/usb/gadget/goku_udc.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drive

[PATCH] usb: phy: remove dead code

2013-11-10 Thread Michal Nazarewicz
From: Michal Nazarewicz --- drivers/usb/phy/phy-am335x.c | 2 -- drivers/usb/phy/phy-generic.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/drivers/usb/phy/phy-am335x.c b/drivers/usb/phy/phy-am335x.c index 6370e50..48d41ab 100644 --- a/drivers/usb/phy/phy-am335x.c +++ b/drivers/usb/phy

Re: [PATCH v5 2/2] usb-serial: Moxa UPORT 12XX/14XX/16XX driver

2013-11-10 Thread Johan Hovold
On Sun, Nov 10, 2013 at 05:58:15PM +0100, Andrew Lunn wrote: > > > +static int mxuport_dtr(struct usb_serial_port *port, int on) > > > +{ > > > + struct mxuport_port *mxport = usb_get_serial_port_data(port); > > > + int err; > > > + > > > + mutex_lock(&mxport->mutex); > > > + > > > + if (on) > > >

Re: [PATCH v5 2/2] usb-serial: Moxa UPORT 12XX/14XX/16XX driver

2013-11-10 Thread Andrew Lunn
Hi Johan Thanks for the quick response. > > +static int mxuport_dtr(struct usb_serial_port *port, int on) > > +{ > > + struct mxuport_port *mxport = usb_get_serial_port_data(port); > > + int err; > > + > > + mutex_lock(&mxport->mutex); > > + > > + if (on) > > + mxport->mcr_state

[PATCH 1/2] usb: gadget: f_fs: remove loop from I/O function

2013-11-10 Thread Michal Nazarewicz
From: Michal Nazarewicz When endpoint changes (due to it being disabled or alt setting changed), mimic the action as if the change happened after the request has been queued, instead of retrying with the new endpoint. Signed-off-by: Michal Nazarewicz --- drivers/usb/gadget/f_fs.c | 94

[PATCH 2/2] check quirk to pad epout buf size when not aligned to maxpacketsize

2013-11-10 Thread Michal Nazarewicz
From: Michal Nazarewicz Check gadget.quirk_ep_out_aligned_size to decide if buffer size requires to be aligned to maxpacketsize of an out endpoint. ffs_epfile_io() needs to pad epout buffer to match above condition if quirk is found. Signed-off-by: Michal Nazarewicz --- I'm wondering whether

Re: [PATCH v3 3/3] usb: s3c-hsotg: Use the new Exynos USB phy driver with the generic phy framework

2013-11-10 Thread Tomasz Figa
Hi Kamil, This patch is changing a DT binding, but you haven't updated relevant documentation. Please remember about it in next version. On Tuesday 05 of November 2013 17:13:21 Kamil Debski wrote: > Change the used phy driver to the new Exynos USB phy driver that uses the > generic phy framework.

Re: [PATCH v3 2/3] usb: ehci-s5p: Change to use phy provided by the generic phy framework

2013-11-10 Thread Tomasz Figa
Hi Kamil, On Tuesday 05 of November 2013 17:13:20 Kamil Debski wrote: > Change the phy provider used from the old usb phy specific to a new one > using the generic phy framework. I believe that until Exynos5250 also gets converted to the new PHY driver, support for the old USB PHY API should rema

Re: [PATCH v5 2/2] usb-serial: Moxa UPORT 12XX/14XX/16XX driver

2013-11-10 Thread Johan Hovold
On Fri, Nov 08, 2013 at 02:19:55PM +0100, Andrew Lunn wrote: > Add a driver which supports the following Moxa USB to serial converters: > * 2 ports : UPort 1250, UPort 1250I > * 4 ports : UPort 1410, UPort 1450, UPort 1450I > * 8 ports : UPort 1610-8, UPort 1650-8 > * 16 port

Re: [PATCH v3 1/3] phy: Add new Exynos USB PHY driver

2013-11-10 Thread Tomasz Figa
Hi Kamil, Please see my comments inline. On Tuesday 05 of November 2013 17:13:19 Kamil Debski wrote: > Add a new driver for the Exynos USB PHY. The new driver uses the generic > PHY framework. The driver includes support for the Exynos 4x10 and 4x12 > SoC families. > > Signed-off-by: Kamil Debsk

Re: [alsa-devel] no reset_resume for driver snd-usb-audio for logitech headset H600

2013-11-10 Thread baumber
On 2013-10-20 23:35, Takashi Iwai wrote: At Sun, 20 Oct 2013 23:18:13 +0200, wrote: On 2013-10-09 11:16 (CEST,UTC+2), Takashi Iwai wrote: diff --git a/sound/usb/card.c b/sound/usb/card.c index 9d9de8d..c591a83 100644 --- a/sound/usb/card.c +++ b/sound/usb/card.c @@ -747,6 +747,7 @@ static str

Re: [PATCH 2/4] dt: exynos5250: Enable support for generic USB 3.0 phy

2013-11-10 Thread Tomasz Figa
Hi Vivek, On Thursday 31 of October 2013 13:15:42 Vivek Gautam wrote: > Update device tree bindings for DWC3 controller and > USB 3.0 phy present on Exynos 5250 SoC, to start using > the phy driver based on generic phy framework. > > Signed-off-by: Vivek Gautam > --- > arch/arm/boot/dts/exynos5

Re: [PATCH RFC 1/4] phy: Add new Exynos5 USB 3.0 PHY driver

2013-11-10 Thread Tomasz Figa
Hi Vivek, On Thursday 31 of October 2013 13:15:41 Vivek Gautam wrote: > Add a new driver for the USB 3.0 PHY on Exynos5 series of SoCs. > The new driver uses the generic PHY framework and will interact > with DWC3 controller present on Exynos5 series of SoCs. > > Signed-off-by: Vivek Gautam > --