aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/Kconfig
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2014-05-13 15:46:52 -0400
committerFelipe Balbi <balbi@ti.com>2014-05-14 10:25:47 -0400
commitc5ab571f81905568a59dce306df0181f33e00932 (patch)
treeba85de9d2e5c8f72f2c6375c20b18915b5adbe9b /drivers/usb/host/Kconfig
parenta8d191c8bb2f11a8f381e7cb98f978b7288c1401 (diff)
usb: phy: msm: reset controller is mandatory now
Commit a27345434134 "usb: phy: msm: Use reset framework for LINK and PHY resets" introduced a mandatory call to reset_control_get into the msm usb phy driver, which means we have to add a Kconfig dependency on the API to avoid this build error: phy/phy-msm-usb.c: In function 'msm_otg_read_dt': phy/phy-msm-usb.c:1461:2: error: implicit declaration of function 'devm_reset_control_get' [-Werror=implicit-function-declaration] motg->link_rst = devm_reset_control_get(&pdev->dev, "link"); ^ Since the usb-ehci-msm driver currently selects the OTG driver, we could still get a broken dependency here. To solve that, this patch also removes the 'select', which turns out to be unnecessary. Reviewed-by: Ivan T. Ivanov <iivanov@mm-sol.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/host/Kconfig')
-rw-r--r--drivers/usb/host/Kconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 3d9e54062d62..7a39ae86d5ce 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -170,7 +170,6 @@ config USB_EHCI_MSM
170 tristate "Support for Qualcomm QSD/MSM on-chip EHCI USB controller" 170 tristate "Support for Qualcomm QSD/MSM on-chip EHCI USB controller"
171 depends on ARCH_MSM 171 depends on ARCH_MSM
172 select USB_EHCI_ROOT_HUB_TT 172 select USB_EHCI_ROOT_HUB_TT
173 select USB_MSM_OTG
174 ---help--- 173 ---help---
175 Enables support for the USB Host controller present on the 174 Enables support for the USB Host controller present on the
176 Qualcomm chipsets. Root Hub has inbuilt TT. 175 Qualcomm chipsets. Root Hub has inbuilt TT.