Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-31 Thread Arnd Bergmann
On Friday 31 May 2013 10:12:38 Alan Stern wrote: > On Thu, 30 May 2013, Arnd Bergmann wrote: > > > > I'll try to replicate your result. I don't have my USB audio device > > > here today, so it will have to wait until tomorrow. > > > > Strange enough, it seems to be working now, on a different b

Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-31 Thread Alan Stern
On Thu, 30 May 2013, Arnd Bergmann wrote: > > I'll try to replicate your result. I don't have my USB audio device > > here today, so it will have to wait until tomorrow. > > Strange enough, it seems to be working now, on a different base. > > The kernel I tried last (based on yesterday's linux

Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-29 Thread Manjunath Goudar
On 30 May 2013 03:32, Arnd Bergmann wrote: > On Wednesday 29 May 2013, Alan Stern wrote: > > > > On Wed, 29 May 2013, Arnd Bergmann wrote: > > > > > On Wednesday 29 May 2013 12:21:02 Alan Stern wrote: > > > > > > > > Those error messages are annoying; they don't use dev_err(), so they > > > > don

Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-29 Thread Arnd Bergmann
On Wednesday 29 May 2013, Alan Stern wrote: > > On Wed, 29 May 2013, Arnd Bergmann wrote: > > > On Wednesday 29 May 2013 12:21:02 Alan Stern wrote: > > > > > > Those error messages are annoying; they don't use dev_err(), so they > > > don't include the device and driver names. There's no way to

Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-29 Thread Alan Stern
On Wed, 29 May 2013, Arnd Bergmann wrote: > On Wednesday 29 May 2013 12:21:02 Alan Stern wrote: > > > > Those error messages are annoying; they don't use dev_err(), so they > > don't include the device and driver names. There's no way to know what > > they refer to. I rather suspect they come f

Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-29 Thread Arnd Bergmann
On Wednesday 29 May 2013 12:21:02 Alan Stern wrote: > > Those error messages are annoying; they don't use dev_err(), so they > don't include the device and driver names. There's no way to know what > they refer to. I rather suspect they come from the usbaudio driver. That makes sense. I have a

Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-29 Thread Alan Stern
On Tue, 28 May 2013, Arnd Bergmann wrote: > Seems to basically work now, but I'm getting run-time errors after > loading the driver, with patch 1/3 applied: > > [15916.438452] input: Logitech USB-PS/2 Optical Mouse as > /devices/pci:00/:00:12.0/usb3/3-1/3-1:1.0/input/input26 > [15916.438

Re: [PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-28 Thread Arnd Bergmann
On Tuesday 28 May 2013, Manjunath Goudar wrote: > This series of patches begins the process of splitting ohci-hcd up into > a core library module and independent pci driver modules. > Seems to basically work now, but I'm getting run-time errors after loading the driver, with patch 1/3 applied: [

[PATCH V8 0/3] USB: OHCI: Start splitting up the driver

2013-05-28 Thread Manjunath Goudar
This series of patches begins the process of splitting ohci-hcd up into a core library module and independent pci driver modules. Patch 1/3 prepares the way by exporting a few functions from ohci-hcd and adding a new mechanism for platform-specific drivers to initialize their hc_driver structures.