Re: [PATCH 5/8] ARM: zynq: use generic cpu idle function for wfi

2013-05-28 Thread Michal Simek
On 05/27/2013 04:32 PM, Sanjay Singh Rawat wrote: > use cpu_do_idle for entering the wfi mode. > > Signed-off-by: Sanjay Singh Rawat > --- > arch/arm/mach-zynq/hotplug.c |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/mach-zynq/hotplug.c b/arch/arm/mach-

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: [

Re: [PATCH 7/8] ARM: msm: use generic cpu idle function for wfi

2013-05-28 Thread David Brown
On Mon, May 27, 2013 at 08:02:44PM +0530, Sanjay Singh Rawat wrote: > use cpu_do_idle for entering the wfi mode. > > Signed-off-by: Sanjay Singh Rawat > --- > arch/arm/mach-msm/hotplug.c |9 ++--- > 1 file changed, 2 insertions(+), 7 deletions(-) Acked-by: David Brown -- sent by an e

Re: [PATCH V8 3/3] USB: OHCI: make ohci-pci a separate driver

2013-05-28 Thread Alan Stern
On Tue, 28 May 2013, Manjunath Goudar wrote: > This patch splits the PCI portion of ohci-hcd out into its > own separate driver module, called ohci-pci. > > The major point of difficulty lies in ohci-pci's many vendor- and > device-specific workarounds. Some of them have to be applied before > c

[PATCH V8 3/3] USB: OHCI: make ohci-pci a separate driver

2013-05-28 Thread Manjunath Goudar
This patch splits the PCI portion of ohci-hcd out into its own separate driver module, called ohci-pci. The major point of difficulty lies in ohci-pci's many vendor- and device-specific workarounds. Some of them have to be applied before calling ohci_start() some after, which necessitates a fair

[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.

[PATCH V8 2/3] USB: OHCI: Generic changes to make ohci-pci a separate driver

2013-05-28 Thread Manjunath Goudar
Note that this changes is part of separating the ohci pci host controller driver from ohci-hcd host code. This contains : -Moved sb800_prefetch() function from ohci-pci.c to pci-quirks.c file and EXPORTed, this is part of the effort to move the ohci pci related code to generic pci

[PATCH V8 1/3] USB: OHCI: prepare to make ohci-hcd a library module

2013-05-28 Thread Manjunath Goudar
This patch prepares ohci-hcd for being split up into a core library and separate platform driver modules. A generic ohci_hc_driver structure is created, containing all the "standard" values, and a new mechanism is added whereby a driver module can specify a set of overrides to those values. In ad

Re: [PATCH 3/8] ARM: SPEAr: use generic cpu idle function for wfi

2013-05-28 Thread Viresh Kumar
On 27 May 2013 20:02, Sanjay Singh Rawat wrote: > use cpu_do_idle for entering the wfi mode. > > Signed-off-by: Sanjay Singh Rawat > --- > arch/arm/mach-spear/hotplug.c |3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/arch/arm/mach-spear/hotplug.c b/arch/arm/mach-spe