diff options
author | Roger Quadros <rogerq@ti.com> | 2013-04-15 07:50:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-04-17 13:03:07 -0400 |
commit | 7c4ebe68ecdeaa6b2846863c29e248615c366e19 (patch) | |
tree | 4118c5f9afc39b53e4628706f08aee9fba107405 /drivers/usb | |
parent | 1361bf4b9f9ef45e628a5b89e0fd9bedfdcb7104 (diff) |
USB: ehci-omap: Don't select any PHY driver
Don't select NOP_USB_XCEIV. Instead, board config
must select USB_PHY and the appropriate PHY driver.
Also add a hint in Kconfig so that users enabling
this driver manually enable the right PHY drivers as well.
Gets rid of the below warnings when USB_EHCI_HCD_OMAP
is enabled.
warning: (USB_EHCI_HCD_OMAP) selects NOP_USB_XCEIV which has unmet direct dependencies (USB_SUPPORT && USB_PHY)
warning: (USB_EHCI_HCD_OMAP) selects NOP_USB_XCEIV which has unmet direct dependencies (USB_SUPPORT && USB_PHY)
Signed-off-by: Roger Quadros <rogerq@ti.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/Kconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index c0be25c8e61c..c558472036b6 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -150,11 +150,13 @@ config USB_EHCI_MXC | |||
150 | config USB_EHCI_HCD_OMAP | 150 | config USB_EHCI_HCD_OMAP |
151 | tristate "EHCI support for OMAP3 and later chips" | 151 | tristate "EHCI support for OMAP3 and later chips" |
152 | depends on ARCH_OMAP | 152 | depends on ARCH_OMAP |
153 | select NOP_USB_XCEIV | ||
154 | default y | 153 | default y |
155 | ---help--- | 154 | ---help--- |
156 | Enables support for the on-chip EHCI controller on | 155 | Enables support for the on-chip EHCI controller on |
157 | OMAP3 and later chips. | 156 | OMAP3 and later chips. |
157 | If your system uses a PHY on the USB port, you will need to | ||
158 | enable USB_PHY and the appropriate PHY driver as well. Most | ||
159 | boards need the NOP_USB_XCEIV PHY driver. | ||
158 | 160 | ||
159 | config USB_EHCI_HCD_ORION | 161 | config USB_EHCI_HCD_ORION |
160 | tristate "Support for Marvell EBU on-chip EHCI USB controller" | 162 | tristate "Support for Marvell EBU on-chip EHCI USB controller" |