Re: [PATCH V2 00/10] USB: OHCI:Properly handle ohci_suspend()routine in bus glue

2013-06-13 Thread Viresh Kumar
Please use linaro-kernel instead of linaro-dev mailing list for sending patches. On 13 June 2013 14:46, Manjunath Goudar wrote: > Suspend scenario in case of ohci bus glue was not properly handled as > it was not suspending generic part of ohci controller. Calling > explicitly the ohci_suspend()r

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

2013-06-13 Thread Tomasz Figa
Hi Manjunath, On Thursday 13 of June 2013 14:46:24 Manjunath Goudar wrote: > Suspend scenario in case of ohci-exynos glue was not > properly handled as it was not suspending generic part > of ohci controller.Calling explicitly the ohci_suspend() > routine in exynos_ohci_suspend() will ensure prope

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

2013-06-13 Thread Alan Stern
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 into USB host subsystem, so I might just ask a stupid quest

Re: [PATCH V2 02/10] USB: OHCI: Properly handle ohci-s3c2410 suspend

2013-06-13 Thread Alan Stern
On Thu, 13 Jun 2013, Manjunath Goudar wrote: > Suspend scenario in case of ohci-s3c2410 glue was not > properly handled as it was not suspending generic part > of ohci controller.Calling explicitly the ohci_suspend() > routine in ohci_hcd_s3c2410_drv_suspend() will ensure > proper handling of susp

Re: [PATCH V2 03/10] USB: OHCI: Properly handle ohci-da8xx suspend

2013-06-13 Thread Alan Stern
On Thu, 13 Jun 2013, Manjunath Goudar wrote: > Suspend scenario in case of ohci-da8xx glue was not > properly handled as it was not suspending generic part > of ohci controller.Calling explicitly the ohci_suspend() > routine in ohci_da8xx_suspend() will ensure proper > handling of suspend scenario

Re: [PATCH V2 01/10] USB: OHCI: Properly handle ohci-at91 suspend

2013-06-13 Thread Alan Stern
On Thu, 13 Jun 2013, Manjunath Goudar wrote: > Suspend scenario in case of ohci-at91 glue was not properly > handled as it was not suspending generic part of ohci controller. > Calling explicitly the ohci_suspend() routine in ohci_hcd_at91_drv_suspend() > will ensure proper handling of suspend sce

Re: [PATCH 10/10] USB: OHCI: Properly handle ohci-spear suspend

2013-06-13 Thread Alan Stern
On Thu, 13 Jun 2013, Viresh Kumar wrote: > > + bool do_wakeup = device_may_wakeup(&pdev->dev); > > + int ret; > > + > > + ret = ohci_suspend(hcd, do_wakeup); > > + if (ret == 0 && do_wakeup && HCD_WAKEUP_PENDING(hcd)) { > > maybe s/ret == 0/!ret I tend to prefer using ! f

Re: Gator with IKS config but not running on big.LITTLE

2013-06-13 Thread Jon Medhurst (Tixy)
On Thu, 2013-06-13 at 12:14 +0800, Andy Green wrote: > Hi - > > Something maybe unrelated after inserting gator successfully get > some kernel logs coming > > [ 52.491528] CPU PMU: unable to set irq affinity (irq=0, cpu=0) > [ 52.496351] CPU PMU: unable to set irq affinity (irq=0, cpu=0)

Re: [PATCH 10/10] USB: OHCI: Properly handle ohci-spear suspend

2013-06-13 Thread Manjunath Goudar
On 13 June 2013 14:49, Viresh Kumar wrote: > On 13 June 2013 14:41, Manjunath Goudar > wrote: > > Suspend scenario in case of ohci-spear glue was not > > properly handled as it was not suspending generic part > > of ohci controller.Calling explicitly the ohci_suspend() > > Add space after full s

Fwd: systemtap failed to compile the generated code for Pandaboard vesrion 13.04 (ubuntu)

2013-06-13 Thread vaasudev s
Dear Members, I am trying to use systemtap on Pandaboard with Linaro Ubuntu 13.04 version. http://releases.linaro.org/13.04/ubuntu/panda I have installed systemtap & other dependencies by apt-get. And followed the instructions below. https://wiki.linaro.org/Platform/DevPlatform/Tools/Systemtap

Re: [PATCH 10/10] USB: OHCI: Properly handle ohci-spear suspend

2013-06-13 Thread Viresh Kumar
On 13 June 2013 14:41, Manjunath Goudar wrote: > Suspend scenario in case of ohci-spear glue was not > properly handled as it was not suspending generic part > of ohci controller.Calling explicitly the ohci_suspend() Add space after full stop. > routine in spear_ohci_hcd_drv_suspend() will ensur

[PATCH V2 06/10] USB: OHCI: Properly handle ohci-omap suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-omap glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_omap_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away wi

[PATCH V2 08/10] USB: OHCI: Properly handle ohci-pxa27x suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-pxa27x glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_pxa27x_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return r

[PATCH V2 10/10] USB: OHCI: Properly handle ohci-spear suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-spear glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in spear_ohci_hcd_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return rig

[PATCH V2 01/10] USB: OHCI: Properly handle ohci-at91 suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-at91 glue was not properly handled as it was not suspending generic part of ohci controller. Calling explicitly the ohci_suspend() routine in ohci_hcd_at91_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return rig

[PATCH V2 09/10] USB: OHCI: Properly handle ohci-sm501 suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-sm501 glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_sm501_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away

[PATCH V2 07/10] USB: OHCI: Properly handle ohci-platform suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-platform glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_platform_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right

[PATCH V2 00/10] USB: OHCI:Properly handle ohci_suspend()routine in bus glue

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci bus glue was not properly handled as it was not suspending generic part of ohci controller. Calling explicitly the ohci_suspend()routine will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away without executing further.

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

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-exynos glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in exynos_ohci_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right awa

[PATCH V2 04/10] USB: OHCI: Properly handle ohci-ep93xx suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-ep93xx glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_ep93xx_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return r

[PATCH V2 02/10] USB: OHCI: Properly handle ohci-s3c2410 suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-s3c2410 glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_s3c2410_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return

[PATCH V2 03/10] USB: OHCI: Properly handle ohci-da8xx suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-da8xx glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_da8xx_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away

[PATCH 04/10] USB: OHCI: Properly handle ohci-ep93xx suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-ep93xx glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_ep93xx_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return r

[PATCH 06/10] USB: OHCI: Properly handle ohci-omap suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-omap glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_omap_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away wi

[PATCH 00/10] USB: OHCI:Properly handle ohci_suspend()routine in bus glue

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci bus glue was not properly handled as it was not suspending generic part of ohci controller. Calling explicitly the ohci_suspend()routine will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away without executing further.

[PATCH 10/10] USB: OHCI: Properly handle ohci-spear suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-spear glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in spear_ohci_hcd_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return rig

[PATCH 01/10] USB: OHCI: Properly handle ohci-at91 suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-at91 glue was not properly handled as it was not suspending generic part of ohci controller. Calling explicitly the ohci_suspend() routine in ohci_hcd_at91_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return rig

[PATCH 07/10] USB: OHCI: Properly handle ohci-platform suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-platform glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_platform_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right

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

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-exynos glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in exynos_ohci_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right awa

[PATCH 08/10] USB: OHCI: Properly handle ohci-pxa27x suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-pxa27x glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_pxa27x_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return r

[PATCH 03/10] USB: OHCI: Properly handle ohci-da8xx suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-da8xx glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_da8xx_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away

[PATCH 09/10] USB: OHCI: Properly handle ohci-sm501 suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-sm501 glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_sm501_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return right away

[PATCH 02/10] USB: OHCI: Properly handle ohci-s3c2410 suspend

2013-06-13 Thread Manjunath Goudar
Suspend scenario in case of ohci-s3c2410 glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_s3c2410_drv_suspend() will ensure proper handling of suspend scenario. V2: -Incase ohci_suspend() fails, return