diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-25 13:29:01 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-04-25 14:00:25 -0400 |
commit | 4626b8daf9bb00ce6b4d533c1a155211ad880f32 (patch) | |
tree | 11a622d1907bedbc88761c48af640ad0a57c5b59 /drivers/usb/host | |
parent | 8097804eab55d2dcfadfc821bceeb0faad978ab3 (diff) |
USB: ehci-msm: USB_MSM_OTG needs USB_PHY
The Kconfig entry for USB_EHCI_MSM unconditionally selects USB_MSM_OTG,
which is now only visible when USB_PHY is also enabled.
This adds an appropriate dependency and enables USB_PHY in the msm
defconfig, avoiding the Kbuild warning:
warning: (USB_EHCI_MSM) selects USB_MSM_OTG which has unmet direct dependencies (USB_SUPPORT && USB_PHY && (USB || USB_GADGET) && ARCH_MSM)
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Felipe Balbi <balbi@ti.com>
Cc: Pavankumar Kondeti <pkondeti@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index c558472036b6..de94f2699063 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -188,6 +188,7 @@ config USB_EHCI_HCD_AT91 | |||
188 | config USB_EHCI_MSM | 188 | config USB_EHCI_MSM |
189 | tristate "Support for Qualcomm QSD/MSM on-chip EHCI USB controller" | 189 | tristate "Support for Qualcomm QSD/MSM on-chip EHCI USB controller" |
190 | depends on ARCH_MSM | 190 | depends on ARCH_MSM |
191 | depends on USB_PHY | ||
191 | select USB_EHCI_ROOT_HUB_TT | 192 | select USB_EHCI_ROOT_HUB_TT |
192 | select USB_MSM_OTG | 193 | select USB_MSM_OTG |
193 | ---help--- | 194 | ---help--- |