diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-11-22 13:01:33 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2020-11-27 07:54:36 +0000 |
commit | 7a69a6f68da5084e7f42df18bbc3b38f3785cccf (patch) | |
tree | c1a41afad7bb449184703cfbaed52feb3785cf65 /drivers/mfd/Kconfig | |
parent | f31cc6afabed4487956118af1ebe3ac603fa92b8 (diff) |
mfd: omap-usb: Depend on COMMON_CLK to fix compile tests
The MFD_OMAP_USB_HOST uses Common Clock Framework thus it cannot be
built on platforms without it (e.g. compile test on MIPS with LANTIQ):
mips-linux-ld: drivers/mfd/omap-usb-host.o: in function `usbhs_omap_probe':
omap-usb-host.c:(.text+0x940): undefined reference to `clk_set_parent'
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/Kconfig')
-rw-r--r-- | drivers/mfd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 10864cc38c17..58e865c8e1eb 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -1443,6 +1443,7 @@ config MFD_TI_LMU config MFD_OMAP_USB_HOST bool "TI OMAP USBHS core and TLL driver" depends on USB_EHCI_HCD_OMAP || USB_OHCI_HCD_OMAP3 + depends on COMMON_CLK default y help This is the core driver for the OAMP EHCI and OHCI drivers. |