diff options
author | Benoit Goby <benoit@android.com> | 2011-02-28 17:45:34 -0800 |
---|---|---|
committer | Benoit Goby <benoit@android.com> | 2011-03-01 17:13:34 -0800 |
commit | 58570bc0c45d65b4c4b2e58ccff3e9a71d0ef5ac (patch) | |
tree | e1e68a48792509db347f2ce051e93d170538da65 /drivers | |
parent | e859d82480517512fd60ab4dd40b6ef00a8a5928 (diff) |
usb: host: Renamed USB_TEGRA_HCD -> USB_EHCI_TEGRA
Change-Id: I2eec79186d6dc258caa2f3c8f3cd071222d1c5c7
Signed-off-by: Benoit Goby <benoit@android.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/host/Kconfig | 16 | ||||
-rw-r--r-- | drivers/usb/host/ehci-hcd.c | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 10f6ab5f9150..28deb1ac09b0 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig @@ -126,6 +126,14 @@ config USB_EHCI_MXC ---help--- Variation of ARC USB block used in some Freescale chips. +config USB_EHCI_TEGRA + boolean "NVIDIA Tegra HCD support" + depends on USB_EHCI_HCD && ARCH_TEGRA + select USB_EHCI_ROOT_HUB_TT + help + This driver enables support for the internal USB Host Controller + found in NVIDIA Tegra SoCs. The Tegra controller is EHCI compliant. + config USB_EHCI_HCD_PPC_OF bool "EHCI support for PPC USB controller on OF platform bus" depends on USB_EHCI_HCD && PPC_OF @@ -418,14 +426,6 @@ config USB_HWA_HCD To compile this driver a module, choose M here: the module will be called "hwa-hc". -config USB_TEGRA_HCD - boolean "NVIDIA Tegra HCD support" - depends on USB && ARCH_TEGRA && USB_EHCI_HCD - select USB_EHCI_ROOT_HUB_TT - help - This driver enables support for the internal USB Host Controller - found in NVIDIA Tegra SoCs. The Tegra controller is EHCI compliant. - config USB_IMX21_HCD tristate "iMX21 HCD support" depends on USB && ARM && MACH_MX21 diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 66505a0d9703..36ec66bb995e 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -1197,7 +1197,7 @@ MODULE_LICENSE ("GPL"); #define PLATFORM_DRIVER ehci_atmel_driver #endif -#ifdef CONFIG_ARCH_TEGRA +#ifdef CONFIG_USB_EHCI_TEGRA #include "ehci-tegra.c" #define PLATFORM_DRIVER tegra_ehci_driver #endif |