Re: [PATCH V2 3/6] USB: OHCI: make ohci-omap3 a separate driver

2013-06-18 Thread Alan Stern
On Wed, 12 Jun 2013, Manjunath Goudar wrote: > Separate the TI OHCI OMAP3 host controller driver from ohci-hcd > host code so that it can be built as a separate driver module. > This work is part of enabling multi-platform kernels on ARM; > it would be nice to have in 3.11. > > V2: > -ohci_setu

Re: [PATCH V2 4/6] USB: OHCI: make ohci-spear a separate driver

2013-06-18 Thread Alan Stern
On Wed, 12 Jun 2013, Manjunath Goudar wrote: > Separate the ST OHCI SPEAr host controller driver from ohci-hcd > host code so that it can be built as a separate driver module. > This work is part of enabling multi-platform kernels on ARM; > it would be nice to have in 3.11. > > V2: > -ohci_setup

Re: [PATCH V2 2/6] USB: OHCI: make ohci-omap a separate driver

2013-06-18 Thread Alan Stern
On Wed, 12 Jun 2013, Manjunath Goudar wrote: > Separate the TI OHCI OMAP1/2 host controller driver from ohci-hcd > host code so that it can be built as a separate driver module. > This work is part of enabling multi-platform kernels on ARM; > it would be nice to have in 3.11. > > V2: > -omap_oh

Re: [PATCH V2 2/6] USB: OHCI: make ohci-omap a separate driver

2013-06-18 Thread Alan Stern
On Wed, 12 Jun 2013, Manjunath Goudar wrote: > Separate the TI OHCI OMAP1/2 host controller driver from ohci-hcd > host code so that it can be built as a separate driver module. > This work is part of enabling multi-platform kernels on ARM; > it would be nice to have in 3.11. > > V2: > -omap_oh

Re: [PATCH V2 1/6] USB: OHCI: make ohci-exynos a separate driver

2013-06-18 Thread Alan Stern
On Wed, 12 Jun 2013, Manjunath Goudar wrote: > Separate the Samsung OHCI EXYNOS host controller driver from ohci-hcd > host code so that it can be built as a separate driver module. > This work is part of enabling multi-platform kernels on ARM; > it would be nice to have in 3.11. > > V2: > -exy

Re: [PATCH V2 05/10] USB: OHCI: Properly handle ohci-exynos suspend

2013-06-18 Thread Alan Stern
On Tue, 18 Jun 2013, Manjunath Goudar wrote: > After Alan explanation I am writing below code end of ohci_suspend() > routine.is it correct Alan. > >if (do_wakeup && HCD_WAKEUP_PENDING(hcd)) { > ohci_resume(hcd, false); > rc = -EBUSY; > } I'm glad

first ubuntu saucy test rebuild

2013-06-18 Thread Matthias Klose
The first test rebuild of saucy salamander was started yesterday for the amd64, i386 and armhf architectures. Currently running, finished for main, universe will finish within the next ten days (armhf a bit earlier). Results can be seen at http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/te

Re: [PATCH V2 05/10] USB: OHCI: Properly handle ohci-exynos suspend

2013-06-18 Thread Sachin Kamat
On 18 June 2013 15:24, Manjunath Goudar wrote: > > > On 14 June 2013 01:22, Alan Stern wrote: >> >> On Thu, 13 Jun 2013, Tomasz Figa wrote: >> >> > > + rc = ohci_suspend(hcd, do_wakeup); >> > > + if (rc == 0 && do_wakeup && HCD_WAKEUP_PENDING(hcd)) { >> > > + ohci_resume(hcd, false)

Re: [PATCH V2 05/10] USB: OHCI: Properly handle ohci-exynos suspend

2013-06-18 Thread Manjunath Goudar
On 14 June 2013 01:22, Alan Stern wrote: > On Thu, 13 Jun 2013, Tomasz Figa wrote: > > > > + rc = ohci_suspend(hcd, do_wakeup); > > > + if (rc == 0 && do_wakeup && HCD_WAKEUP_PENDING(hcd)) { > > > + ohci_resume(hcd, false); > > > + rc = -EBUSY; > > > + } > > > > I'm not