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

2013-06-02 Thread Alan Stern
On Sun, 2 Jun 2013, Manjunath Goudar wrote: > On 31 May 2013 19:37, Alan Stern wrote: > > > > + return ohci_setup(ohci_to_hcd(ohci)); > > > > You don't need to use ohci_to_hcd(), because the hcd value is already a > > parameter in this function. > > > > > After setting ohci's flag and num_

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

2013-06-02 Thread Manjunath Goudar
On 31 May 2013 19:37, Alan Stern wrote: > On Fri, 31 May 2013 manjunath.gou...@linaro.org wrote: > > > From: Manjunath Goudar > > > > This patch splits the ohci-platform code from ohci-hcd out > > into its own separate driver module.This work is part of enabling > > multi-platform kernels on ARM

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

2013-05-31 Thread Alan Stern
On Fri, 31 May 2013 manjunath.gou...@linaro.org wrote: > From: Manjunath Goudar > > This patch splits the ohci-platform code from ohci-hcd out > into its own separate driver module.This work is part of enabling > multi-platform kernels on ARM. > > In V2: > -Passed "hcd" argment instead of "oh

[PATCH V2 1/2] USB: OHCI: make ohci-platform a separate driver

2013-05-31 Thread manjunath . goudar
From: Manjunath Goudar This patch splits the ohci-platform code from ohci-hcd out into its own separate driver module.This work is part of enabling multi-platform kernels on ARM. In V2: -Passed "hcd" argment instead of "ohci" in ohci_setup() because it is using "struct usb_hcd" argment. Si