[PATCH 0/6] USB: OHCI: more bus glues as separate modules

2013-07-22 Thread Manjunath Goudar
statement of ohci-at91 file. In patch 6/6 : - Removed extra space before the '='. - Moved /* forward definitions */ line before the declarations of functions. Manjunath Goudar (6): USB: OHCI: make ohci-exynos a separate driver USB: OHCI: make ohci-omap a separate driver USB: OHCI: make ohci

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

2013-07-22 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Anand

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

2013-07-22 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked

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

2013-07-22 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Alan

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

2013-07-22 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Felipe

[PATCH 6/6] USB: OHCI: make ohci-s3c2410 a separate driver

2013-07-22 Thread Manjunath Goudar
Separate the Samsung OHCI S3C 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked

[PATCH 5/6] USB: OHCI: make ohci-at91 a separate driver

2013-07-22 Thread Manjunath Goudar
Separate the TI OHCI Atmel 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Arnd

[PATCH 07/11] USB: OHCI: Properly handle ohci-omap suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar manjunath.gou

[PATCH 02/11] USB: OHCI: Properly handle ohci-at91 suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar manjunath.gou

[PATCH 04/11] USB: OHCI: Properly handle ohci-da8xx suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar manjunath.gou

[PATCH 09/11] USB: OHCI: Properly handle ohci-pxa27x suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar

[PATCH 06/11] USB: OHCI: Properly handle ohci-exynos suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar manjunath.gou

[PATCH 05/11] USB: OHCI: Properly handle ohci-ep93xx suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar

[PATCH 03/11] USB: OHCI: Properly handle ohci-s3c2410 suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar

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

2013-07-22 Thread Manjunath Goudar
. V3: -New patch 1/11 added, for generic ohci-hcd suspend code. V4: -Properly aligned do_wakeup and ret variables. Manjunath Goudar (11): USB: OHCI: Properly handle OHCI controller suspend USB: OHCI: Properly handle ohci-at91 suspend USB: OHCI: Properly handle ohci-s3c2410 suspend USB

[PATCH 01/11] USB: OHCI: Properly handle OHCI controller suspend

2013-07-22 Thread Manjunath Goudar
Suspend scenario in case of OHCI was not properly handled in ochi_suspend()routine. This does proper handling of suspend scenario. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Alan Stern st...@rowland.harvard.edu Cc: Arnd Bergmann a...@arndb.de Cc: Greg KH g...@kroah.com

[PATCH 08/11] USB: OHCI: Properly handle ohci-platform suspend

2013-07-22 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. Signed-off-by: Manjunath Goudar manjunath.gou

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

2013-07-22 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. Signed-off-by: Manjunath Goudar manjunath.gou

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

2013-07-22 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. Signed-off-by: Manjunath Goudar

[PATCH V2] USB: EHCI: make ehci-w90X900 a separate driver

2013-07-22 Thread Manjunath Goudar
. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Wan ZongShun mcuos@gmail.com Cc: linux-usb@vger.kernel.org Cc: linux-ker...@vger.kernel.org V2: -Arranged #include's

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

2013-07-23 Thread Manjunath Goudar
Separate the OHCI EP93XX 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Arnd Bergmann a...@arndb.de Cc: Alan Stern st

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

2013-07-23 Thread Manjunath Goudar
Separate the OHCI pxa27x/pxa3xx 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Arnd Bergmann a...@arndb.de Cc: Greg KH

[PATCH V3 1/2] USB: OHCI: make ohci-ep93xx a separate driver

2013-07-26 Thread Manjunath Goudar
Separate the OHCI EP93XX 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Alan Stern st...@rowland.harvard.edu Cc

[PATCH V3 2/2] USB: OHCI: make ohci-pxa27x a separate driver

2013-07-26 Thread Manjunath Goudar
Separate the OHCI pxa27x/pxa3xx 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Arnd Bergmann a...@arndb.de Cc: Greg KH

[PATCH V3 0/2] USB: OHCI: more bus glues as separate modules

2013-07-26 Thread Manjunath Goudar
of to_pxa27x_ohci. -clk_put() function has been called before usb_put_hcd(). Manjunath Goudar (2): USB: OHCI: make ohci-ep93xx a separate driver USB: OHCI: make ohci-pxa27x a separate driver drivers/usb/host/Kconfig | 16 +++ drivers/usb/host/Makefile |2 + drivers/usb

[PATCH V4 0/6] USB: OHCI: more bus glues as separate modules

2013-07-31 Thread Manjunath Goudar
statement of ohci-at91 file. In patch 6/6 : - Removed extra space before the '='. - Moved /* forward definitions */ line before the declarations of functions. Manjunath Goudar (6): USB: OHCI: make ohci-exynos a separate driver USB: OHCI: make ohci-omap a separate driver USB: OHCI: make ohci

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

2013-07-31 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked

[PATCH V4 5/6] USB: OHCI: make ohci-at91 a separate driver

2013-07-31 Thread Manjunath Goudar
Separate the TI OHCI Atmel 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Alan

[PATCH V4 6/6] USB: OHCI: make ohci-s3c2410 a separate driver

2013-07-31 Thread Manjunath Goudar
Separate the Samsung OHCI S3C 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked

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

2013-07-31 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Alan

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

2013-07-31 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked

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

2013-07-31 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Alan

[PATCH V2] USB: EHCI: make ehci-w90X900 a separate driver

2013-07-31 Thread Manjunath Goudar
. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de Acked-by: Wan ZongShun mcuos@gmail.com Acked-by: Alan Stern st...@rowland.harvard.edu Cc: Greg KH g...@kroah.com Cc: linux-usb@vger.kernel.org Cc: linux-ker...@vger.kernel.org V2: -Arranged

[PATCH V2] USB: EHCI: make ehci-w90X900 a separate driver

2013-08-10 Thread Manjunath Goudar
. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de Acked-by: Wan ZongShun mcuos@gmail.com Acked-by: Alan Stern st...@rowland.harvard.edu Cc: Greg KH g...@kroah.com Cc: linux-usb@vger.kernel.org Cc

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

2013-08-10 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off

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

2013-08-10 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off

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

2013-08-10 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off

[PATCH V4 5/6] USB: OHCI: make ohci-at91 a separate driver

2013-08-10 Thread Manjunath Goudar
Separate the TI OHCI Atmel 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off

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

2013-08-10 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed

[PATCH V4 6/6] USB: OHCI: make ohci-s3c2410 a separate driver

2013-08-10 Thread Manjunath Goudar
Separate the Samsung OHCI S3C 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed

[PATCH V3 1/2] USB: OHCI: make ohci-ep93xx a separate driver

2013-08-10 Thread Manjunath Goudar
Separate the OHCI EP93XX 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V3 2/2] USB: OHCI: make ohci-pxa27x a separate driver

2013-08-10 Thread Manjunath Goudar
Separate the OHCI pxa27x/pxa3xx 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax

[PATCH V2] USB: OHCI: make ohci-nxp a separate driver

2013-08-10 Thread Manjunath Goudar
naming. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Acked-by: Alan Stern st...@rowland.harvard.edu Cc: Arnd Bergmann a...@arndb.de Cc: Greg KH g...@kroah.com Cc: linux-usb@vger.kernel.org V2: - Directive check NXP_PLATFORM_DRIVER block

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

2013-08-12 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off

[PATCH V5 6/6] USB: OHCI: make ohci-s3c2410 a separate driver

2013-08-12 Thread Manjunath Goudar
Separate the Samsung OHCI S3C24xx/S3C64xx 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org

[PATCH V5 5/6] USB: OHCI: make ohci-at91 a separate driver

2013-08-12 Thread Manjunath Goudar
Separate the TI OHCI Atmel 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.12. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off

[PATCH V2] USB: EHCI: make ehci-w90X900 a separate driver

2013-09-13 Thread Manjunath Goudar
. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de Acked-by: Wan ZongShun mcuos@gmail.com Acked-by: Alan Stern st...@rowland.harvard.edu Cc: Greg KH g...@kroah.com Cc: linux-usb@vger.kernel.org Cc

[PATCH V5 1/9] USB: OHCI: make ohci-exynos a separate driver

2013-09-16 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax

[PATCH V5 2/9] USB: OHCI: make ohci-omap a separate driver

2013-09-16 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax

[PATCH V5 8/9] USB: OHCI: make ohci-ep93xx a separate driver

2013-09-16 Thread Manjunath Goudar
Separate the OHCI EP93XX 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 9/9] USB: OHCI: make ohci-pxa27x a separate driver

2013-09-16 Thread Manjunath Goudar
Separate the OHCI pxa27x/pxa3xx 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax

[PATCH V5 4/9] USB: OHCI: make ohci-spear a separate driver

2013-09-16 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 6/9] USB: OHCI: make ohci-s3c2410 a separate driver

2013-09-16 Thread Manjunath Goudar
Separate the Samsung OHCI S3C24xx/S3C64xx 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 5/9] USB: OHCI: make ohci-at91 a separate driver

2013-09-16 Thread Manjunath Goudar
Separate the TI OHCI Atmel 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 7/9] USB: OHCI: make ohci-nxp a separate driver

2013-09-16 Thread Manjunath Goudar
naming. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Acked-by: Alan Stern st...@rowland.harvard.edu Cc: Arnd Bergmann a...@arndb.de Cc: Greg KH g...@kroah.com Cc: linux-usb@vger.kernel.org V1-V2: - Directive check NXP_PLATFORM_DRIVER

[PATCH V5 3/9] USB: OHCI: make ohci-omap3 a separate driver

2013-09-16 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 1/9] USB: OHCI: make ohci-exynos a separate driver

2013-09-21 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax

[PATCH V5 5/9] USB: OHCI: make ohci-at91 a separate driver

2013-09-21 Thread Manjunath Goudar
Separate the TI OHCI Atmel 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 2/9] USB: OHCI: make ohci-omap a separate driver

2013-09-21 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax

[PATCH V5 7/9] USB: OHCI: make ohci-nxp a separate driver

2013-09-21 Thread Manjunath Goudar
naming. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Acked-by: Alan Stern st...@rowland.harvard.edu Cc: Arnd Bergmann a...@arndb.de Cc: Greg KH g...@kroah.com Cc: linux-usb@vger.kernel.org V1-V2: - Directive check NXP_PLATFORM_DRIVER

[PATCH V5 8/9] USB: OHCI: make ohci-ep93xx a separate driver

2013-09-21 Thread Manjunath Goudar
Separate the OHCI EP93XX 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 4/9] USB: OHCI: make ohci-spear a separate driver

2013-09-21 Thread Manjunath Goudar
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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH V5 6/9] USB: OHCI: make ohci-s3c2410 a separate driver

2013-09-21 Thread Manjunath Goudar
Separate the Samsung OHCI S3C24xx/S3C64xx 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. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org

[PATCH 00/10] usb: ehci: more bus glues as separate modules

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the SOC On-Chip host controller driver from ehci-hcd host code into its own driver module. Manjunath Goudar (10): USB:Changed omap2plus_defconfig to support OMAP USB static driver USB: EHCI: make ehci-omap a separate driver USB

[PATCH 01/10] USB:Changed omap2plus_defconfig to support OMAP USB static driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Selected EHCI and OMAP driver as static drivers using omap2plus_defconfig configuration Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Arnd Bergmann a...@linaro.org Cc: Felipe Balbi ba...@ti.com Cc: Greg KH g

[PATCH 02/10] USB: EHCI: make ehci-omap a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the OMAP host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Arnd Bergmann a...@linaro.org Cc: Felipe Balbi ba...@ti.com Cc: Greg KH g

[PATCH 03/10] USB: EHCI: make ehci-spear a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Spear host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern

[PATCH 04/10] USB: EHCI: make ehci-orion a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Marvell Orion host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Jason

[PATCH 06/10] USB: EHCI: make ehci-s5p a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the s5p host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Kukjin Kim kgene

[PATCH 09/10] USB: EHCI: make ehci-msm a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Qualcomm On-Chip host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: David

[PATCH 10/10] USB: EHCI: make ehci-w90X900 a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Nuvoton On-Chip host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Wan

[PATCH 08/10] USB: EHCI: make ehci-vt8500 a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the vt8500 host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Tony Prisk li

[PATCH 05/10] USB: EHCI: make ehci-atmel a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Atmel host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Alan Stern st...@rowland.harvard.edu Cc: Greg KH g...@kroah.com Cc: Grant Likely

[PATCH 07/10] USB: EHCI: make ehci-mv a separate driver

2013-02-07 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the mv(marvell) host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Jason Cooper

[PATCH 0/8] usb: ehci: more bus glues as separate modules

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the SOC On-Chip host controller driver from ehci-hcd host code into its own driver module Manjunath Goudar (8): USB: EHCI: make ehci-spear a separate driver USB: EHCI: make ehci-atmel a separate driver USB: EHCI: make ehci-s5p

[PATCH 1/8] USB: EHCI: make ehci-spear a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Spear host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern

[PATCH 2/8] USB: EHCI: make ehci-atmel a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Atmel host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Alan Stern st...@rowland.harvard.edu Cc: Greg KH g...@kroah.com Cc: Grant Likely

[PATCH 3/8] USB: EHCI: make ehci-s5p a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the s5p host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Kukjin Kim kgene

[PATCH 6/8] USB: EHCI: make ehci-msm a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Qualcomm On-Chip host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: David

[PATCH 7/8] USB: EHCI: make ehci-w90X900 a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Nuvoton On-Chip host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Wan

[PATCH 8/8] USB: EHCI: make ehci-orion a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Marvell Orion host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Jason

[PATCH 4/8] USB: EHCI: make ehci-mv a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the mv(marvell) host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Jason Cooper

[PATCH 5/8] USB: EHCI: make ehci-vt8500 a separate driver

2013-02-10 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the vt8500 host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Tony Prisk li

[PATCH V2] usb: ehci: more bus glues as separate modules

2013-02-11 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the SOC On-Chip host controller driver from ehci-hcd host code into its own driver module Manjunath Goudar (1): USB: EHCI: make ehci-s5p a separate driver drivers/usb/host/Kconfig|2 +- drivers/usb/host/Makefile |1

[PATCH] USB: EHCI: make ehci-s5p a separate driver

2013-02-11 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the s5p host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Kukjin Kim kgene

[PATCH V3] USB:ehci: more bus glues as separate modules

2013-02-12 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the SPEAr On-Chip host controller driver from ehci-hcd host code into its own static driver module and replacing spear to SPEAr in leaving functions/variables/config options. Manjunath Goudar (1): USB: EHCI: make ehci-spear

[PATCH] USB: EHCI: make ehci-spear a separate driver

2013-02-12 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the SPEAr host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern

[PATCH V3]usb: ehci: more bus glues as separate modules

2013-02-12 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Atmel On-Chip host controller driver from ehci-hcd host code into its own static driver module Manjunath Goudar (1): USB: EHCI: make ehci-atmel a separate driver drivers/usb/host/Kconfig |8 + drivers/usb/host

[PATCH] USB: EHCI: make ehci-atmel a separate driver

2013-02-12 Thread manjunath . goudar
From: Manjunath Goudar manjunath.gou...@linaro.org Separate the Atmel host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Alan Stern st...@rowland.harvard.edu Cc: Greg KH g...@kroah.com Cc: Grant Likely

[PATCH V3] USB: ehci:mv bus glue as separate module

2013-02-13 Thread Manjunath Goudar
Separate the mv On-Chip host controller driver from ehci-hcd host code into its own static driver module Manjunath Goudar (1): USB: EHCI: make ehci-mv a separate driver drivers/usb/host/Kconfig|2 +- drivers/usb/host/Makefile |1 + drivers/usb/host/ehci-hcd.c |6

[PATCH] USB: EHCI: make ehci-mv a separate driver

2013-02-13 Thread Manjunath Goudar
Separate the mv host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Eric Miao eric.y.m...@gmail.com Cc: Haojian Zhuang haojian.zhu

[PATCH] USB: EHCI: make ehci-mv a separate driver

2013-02-14 Thread Manjunath Goudar
Separate the mv host controller driver from ehci-hcd host code into its own driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Eric Miao eric.y.m...@gmail.com Cc: Haojian Zhuang haojian.zhu

[PATCH] USB: EHCI: make ehci-mv as separate static driver

2013-02-14 Thread Manjunath Goudar
Separate the mv host controller driver from ehci-hcd host code into its own static driver module. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Eric Miao eric.y.m...@gmail.com Cc: Haojian Zhuang haojian.zhu

[V2 0/8] usb: ehci: more bus glues as separate modules

2013-02-15 Thread Manjunath Goudar
Separate the SOC On-Chip host controller driver from ehci-hcd host code into its own driver module V2: Modified the patches, based on the first version review comments Manjunath Goudar (8): USB: EHCI: make ehci-spear a separate driver USB: EHCI: make ehci-atmel a separate driver USB

[V2 1/8] USB: EHCI: make ehci-spear a separate driver

2013-02-15 Thread Manjunath Goudar
Separate the SPEAr host controller driver from ehci-hcd host code into its own driver module. In V2: Replaced spear as SPEAr everywhere, leaving functions/variables/config options. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Signed-off-by: Deepak Saxena dsax...@linaro.org Cc

[V2 2/8] USB: EHCI: make ehci-atmel a separate driver

2013-02-15 Thread Manjunath Goudar
' Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Alan Stern st...@rowland.harvard.edu Cc: Greg KH g...@kroah.com Cc: Grant Likely grant.lik...@secretlab.ca Cc: Rob Herring rob.herr...@calxeda.com Cc: Andrew Victor li...@maxim.org.za Cc: Nicolas Ferre nicolas.fe...@atmel.com Cc: Jean

[V2 3/8] USB: EHCI: make ehci-s5p a separate driver

2013-02-15 Thread Manjunath Goudar
Separate the s5p host controller driver from ehci-hcd host code into its own driver module. In V2: Tegra patch related changes removed from this patch. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Acked-by: Jingoo Han jg1@samsung.com Cc: Greg KH g...@kroah.com Cc: Alan Stern

[V2 4/8] USB: EHCI: make ehci-mv as separate static driver

2013-02-15 Thread Manjunath Goudar
Separate the mv host controller driver from ehci-hcd host code into its own static driver module. In V2: No changes only Cc list changed in this patch. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc: Eric Miao

[V2 8/8] USB: EHCI: make ehci-orion a separate driver

2013-02-15 Thread Manjunath Goudar
Separate the Orion host controller driver from ehci-hcd host code into its own static driver module. In V2: Tegra patch related changes removed from this patch. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc

[V2 6/8] USB: EHCI: make ehci-msm a separate driver

2013-02-15 Thread Manjunath Goudar
Separate the Qualcomm On-Chip host controller driver from ehci-hcd host code into its own driver module. In V2: Tegra patch related changes removed from this patch. Signed-off-by: Manjunath Goudar manjunath.gou...@linaro.org Cc: Greg KH g...@kroah.com Cc: Alan Stern st...@rowland.harvard.edu Cc

  1   2   3   >