linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] USB: Fix USB Kconfig dependency problem on 85xx/QoirQ platforms
@ 2011-01-10 10:06 Xulei
  2011-01-10 16:22 ` Kumar Gala
  0 siblings, 1 reply; 4+ messages in thread
From: Xulei @ 2011-01-10 10:06 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: Xulei, Kumar Gala

For FSL PPC SoCs USB_ARCH_HAS_EHCI currently on depends on PPC_83xx.
However that excludes support for USB on 85xx & QorIQ devices.  Use
FSL_SOC insted which will get us 83xx, 85xx, QorIQ, and 5xxx which all
have the same USB IP on them.

Signed-off-by: Xulei <B33228@freescale.com>
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
---
 drivers/usb/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
index 6a58cb1..d513d3a 100644
--- a/drivers/usb/Kconfig
+++ b/drivers/usb/Kconfig
@@ -57,7 +57,7 @@ config USB_ARCH_HAS_OHCI
 # some non-PCI hcds implement EHCI
 config USB_ARCH_HAS_EHCI
 	boolean
-	default y if PPC_83xx
+	default y if FSL_SOC
 	default y if SOC_AU1200
 	default y if ARCH_IXP4XX
 	default y if ARCH_W90X900
-- 
1.7.0.4

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

* Re: [PATCH] USB: Fix USB Kconfig dependency problem on 85xx/QoirQ platforms
  2011-01-10 10:06 Xulei
@ 2011-01-10 16:22 ` Kumar Gala
  2011-01-11 11:51   ` xulei
  0 siblings, 1 reply; 4+ messages in thread
From: Kumar Gala @ 2011-01-10 16:22 UTC (permalink / raw)
  To: Xulei Lei-B33228; +Cc: Greg KH, linux-usb, linuxppc-dev


On Jan 10, 2011, at 4:06 AM, Xulei wrote:

> For FSL PPC SoCs USB_ARCH_HAS_EHCI currently on depends on PPC_83xx.
> However that excludes support for USB on 85xx & QorIQ devices.  Use
> FSL_SOC insted which will get us 83xx, 85xx, QorIQ, and 5xxx which all
> have the same USB IP on them.
> 
> Signed-off-by: Xulei <B33228@freescale.com>
> Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
> ---
> drivers/usb/Kconfig |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
> index 6a58cb1..d513d3a 100644
> --- a/drivers/usb/Kconfig
> +++ b/drivers/usb/Kconfig
> @@ -57,7 +57,7 @@ config USB_ARCH_HAS_OHCI
> # some non-PCI hcds implement EHCI
> config USB_ARCH_HAS_EHCI
> 	boolean
> -	default y if PPC_83xx
> +	default y if FSL_SOC
> 	default y if SOC_AU1200
> 	default y if ARCH_IXP4XX
> 	default y if ARCH_W90X900
> -- 
> 1.7.0.4

This really should have been CC'd to the USB list & maintainer.

- k

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

* Re: [PATCH] USB: Fix USB Kconfig dependency problem on 85xx/QoirQ platforms
  2011-01-10 16:22 ` Kumar Gala
@ 2011-01-11 11:51   ` xulei
  0 siblings, 0 replies; 4+ messages in thread
From: xulei @ 2011-01-11 11:51 UTC (permalink / raw)
  To: Kumar Gala; +Cc: Greg KH, linux-usb, linuxppc-dev

Thanks very much.
I'm sorry for that and will get it later.

On =E4=B8=80, 2011-01-10 at 10:22 -0600, Kumar Gala wrote:
> On Jan 10, 2011, at 4:06 AM, Xulei wrote:
>=20
> > For FSL PPC SoCs USB_ARCH_HAS_EHCI currently on depends on PPC_83xx.
> > However that excludes support for USB on 85xx & QorIQ devices.  Use
> > FSL_SOC insted which will get us 83xx, 85xx, QorIQ, and 5xxx which al=
l
> > have the same USB IP on them.
> >=20
> > Signed-off-by: Xulei <B33228@freescale.com>
> > Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
> > ---
> > drivers/usb/Kconfig |    2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >=20
> > diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
> > index 6a58cb1..d513d3a 100644
> > --- a/drivers/usb/Kconfig
> > +++ b/drivers/usb/Kconfig
> > @@ -57,7 +57,7 @@ config USB_ARCH_HAS_OHCI
> > # some non-PCI hcds implement EHCI
> > config USB_ARCH_HAS_EHCI
> > 	boolean
> > -	default y if PPC_83xx
> > +	default y if FSL_SOC
> > 	default y if SOC_AU1200
> > 	default y if ARCH_IXP4XX
> > 	default y if ARCH_W90X900
> > --=20
> > 1.7.0.4
>=20
> This really should have been CC'd to the USB list & maintainer.
>=20
> - k

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

* [PATCH] USB: Fix USB Kconfig dependency problem on 85xx/QoirQ platforms
@ 2011-10-14 20:35 Kumar Gala
  0 siblings, 0 replies; 4+ messages in thread
From: Kumar Gala @ 2011-10-14 20:35 UTC (permalink / raw)
  To: gregkh; +Cc: linuxppc-dev, linux-usb, linux-kernel, Xu lei

From: Xu lei <B33228@freescale.com>

For FSL PPC SoCs USB_ARCH_HAS_EHCI currently on depends on PPC_83xx.
However that excludes support for USB on 85xx & QorIQ devices.  Use
FSL_SOC insted which will get us 83xx, 85xx, QorIQ, and 5xxx which all
have the same USB IP on them.

Signed-off-by: Xulei <B33228@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 drivers/usb/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
index 48f1781..1580d7c 100644
--- a/drivers/usb/Kconfig
+++ b/drivers/usb/Kconfig
@@ -54,7 +54,7 @@ config USB_ARCH_HAS_OHCI
 # some non-PCI hcds implement EHCI
 config USB_ARCH_HAS_EHCI
 	boolean
-	default y if PPC_83xx
+	default y if FSL_SOC
 	default y if PPC_MPC512x
 	default y if SOC_AU1200
 	default y if ARCH_IXP4XX
-- 
1.7.3.4

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

end of thread, other threads:[~2011-10-14 20:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-14 20:35 [PATCH] USB: Fix USB Kconfig dependency problem on 85xx/QoirQ platforms Kumar Gala
  -- strict thread matches above, loose matches on Subject: below --
2011-01-10 10:06 Xulei
2011-01-10 16:22 ` Kumar Gala
2011-01-11 11:51   ` xulei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).