diff options
author | Fabio Estevam <festevam@gmail.com> | 2012-01-13 15:19:06 -0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-01-24 15:43:08 +0200 |
commit | a37670b1c0f5dee021e451130653936742233457 (patch) | |
tree | db1212e544f03237e60776056b71e8237bf889f1 /drivers/usb/otg | |
parent | 7983bc74fc0bc91f026c7ba0654b08073d843657 (diff) | |
download | talos-op-linux-a37670b1c0f5dee021e451130653936742233457.tar.gz talos-op-linux-a37670b1c0f5dee021e451130653936742233457.zip |
drivers: usb: otg: Fix dependencies for some OTG drivers
Fix the following build warning:
warning: (USB_LANGWELL_OTG && FSL_USB2_OTG && USB_MV_OTG) selects USB_OTG which has unmet direct dependencies (USB_SUPPORT && USB && EXPERIMENTAL && USB_SUSPEND)
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/otg')
-rw-r--r-- | drivers/usb/otg/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/otg/Kconfig b/drivers/usb/otg/Kconfig index 9105c285f594..76d629345418 100644 --- a/drivers/usb/otg/Kconfig +++ b/drivers/usb/otg/Kconfig @@ -110,7 +110,7 @@ config AB8500_USB config FSL_USB2_OTG bool "Freescale USB OTG Transceiver Driver" - depends on USB_EHCI_FSL && USB_GADGET_FSL_USB2 + depends on USB_EHCI_FSL && USB_GADGET_FSL_USB2 && USB_SUSPEND select USB_OTG select USB_OTG_UTILS help @@ -118,7 +118,7 @@ config FSL_USB2_OTG config USB_MV_OTG tristate "Marvell USB OTG support" - depends on USB_MV_UDC + depends on USB_MV_UDC && USB_SUSPEND select USB_OTG select USB_OTG_UTILS help |