All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2] ARM: mxs: select USB_ARCH_HAS_EHCI
@ 2013-01-10 15:03 Maxime Ripard
  2013-01-10 15:17 ` Shawn Guo
  2013-01-11 12:38 ` Sergei Shtylyov
  0 siblings, 2 replies; 4+ messages in thread
From: Maxime Ripard @ 2013-01-10 15:03 UTC (permalink / raw)
  To: linux-arm-kernel

Commit 09f6ffde introduced a dependency on USB_EHCI_HCD for the chipidea
USB host driver, that in turns depends on USB_ARCH_HAS_EHCI.

If this symbol is not selected by the ARCH, we are not able to use the
chipidea driver anymore.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 drivers/usb/Kconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
index 4c90b51..640ae6c 100644
--- a/drivers/usb/Kconfig
+++ b/drivers/usb/Kconfig
@@ -37,6 +37,7 @@ config USB_ARCH_HAS_EHCI
 	default y if ARCH_W90X900
 	default y if ARCH_AT91
 	default y if ARCH_MXC
+	default y if ARCH_MXS
 	default y if ARCH_OMAP3
 	default y if ARCH_CNS3XXX
 	default y if ARCH_VT8500
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCHv2] ARM: mxs: select USB_ARCH_HAS_EHCI
  2013-01-10 15:03 [PATCHv2] ARM: mxs: select USB_ARCH_HAS_EHCI Maxime Ripard
@ 2013-01-10 15:17 ` Shawn Guo
  2013-01-10 15:27   ` Maxime Ripard
  2013-01-11 12:38 ` Sergei Shtylyov
  1 sibling, 1 reply; 4+ messages in thread
From: Shawn Guo @ 2013-01-10 15:17 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 10, 2013 at 04:03:55PM +0100, Maxime Ripard wrote:
> Commit 09f6ffde introduced a dependency on USB_EHCI_HCD for the chipidea
> USB host driver, that in turns depends on USB_ARCH_HAS_EHCI.
> 
> If this symbol is not selected by the ARCH, we are not able to use the
> chipidea driver anymore.
> 
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> ---
>  drivers/usb/Kconfig |    1 +
>  1 file changed, 1 insertion(+)

Now, it should go via usb rather than arm-soc tree.

Shawn

> 
> diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
> index 4c90b51..640ae6c 100644
> --- a/drivers/usb/Kconfig
> +++ b/drivers/usb/Kconfig
> @@ -37,6 +37,7 @@ config USB_ARCH_HAS_EHCI
>  	default y if ARCH_W90X900
>  	default y if ARCH_AT91
>  	default y if ARCH_MXC
> +	default y if ARCH_MXS
>  	default y if ARCH_OMAP3
>  	default y if ARCH_CNS3XXX
>  	default y if ARCH_VT8500
> -- 
> 1.7.10.4
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCHv2] ARM: mxs: select USB_ARCH_HAS_EHCI
  2013-01-10 15:17 ` Shawn Guo
@ 2013-01-10 15:27   ` Maxime Ripard
  0 siblings, 0 replies; 4+ messages in thread
From: Maxime Ripard @ 2013-01-10 15:27 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Shawn,

On 10/01/2013 16:17, Shawn Guo wrote:
> On Thu, Jan 10, 2013 at 04:03:55PM +0100, Maxime Ripard wrote:
>> Commit 09f6ffde introduced a dependency on USB_EHCI_HCD for the chipidea
>> USB host driver, that in turns depends on USB_ARCH_HAS_EHCI.
>>
>> If this symbol is not selected by the ARCH, we are not able to use the
>> chipidea driver anymore.
>>
>> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
>> ---
>>  drivers/usb/Kconfig |    1 +
>>  1 file changed, 1 insertion(+)
> 
> Now, it should go via usb rather than arm-soc tree.

Yes, that's what I thought just after sending the patch.

Sorry for that
Maxime

-- 
Maxime Ripard, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCHv2] ARM: mxs: select USB_ARCH_HAS_EHCI
  2013-01-10 15:03 [PATCHv2] ARM: mxs: select USB_ARCH_HAS_EHCI Maxime Ripard
  2013-01-10 15:17 ` Shawn Guo
@ 2013-01-11 12:38 ` Sergei Shtylyov
  1 sibling, 0 replies; 4+ messages in thread
From: Sergei Shtylyov @ 2013-01-11 12:38 UTC (permalink / raw)
  To: linux-arm-kernel

Hello.

On 10-01-2013 19:03, Maxime Ripard wrote:

> Commit 09f6ffde introduced a dependency on USB_EHCI_HCD for the chipidea

    Please also specify that commit's summary in parens (or however you like).

> USB host driver, that in turns depends on USB_ARCH_HAS_EHCI.

> If this symbol is not selected by the ARCH, we are not able to use the
> chipidea driver anymore.

> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> ---
>   drivers/usb/Kconfig |    1 +
>   1 file changed, 1 insertion(+)

    You should post USB patches to linux-usb at vger.kernel.org.

WBR, Sergei

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-01-11 12:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-10 15:03 [PATCHv2] ARM: mxs: select USB_ARCH_HAS_EHCI Maxime Ripard
2013-01-10 15:17 ` Shawn Guo
2013-01-10 15:27   ` Maxime Ripard
2013-01-11 12:38 ` Sergei Shtylyov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.