From: Randy Dunlap <rdun...@infradead.org>

Fix a Kconfig warning that is causing lots of build errors
when USB_SUPPORT is not set.

USB_PHY depends on USB_SUPPORT but "select" doesn't care about
dependencies, so this driver should also depend on USB_SUPPORT.
It should not select USB_SUPPORT.

WARNING: unmet direct dependencies detected for USB_PHY
  Depends on [n]: USB_SUPPORT [=n]
  Selected by [m]:
  - USB_LGM_PHY [=m]

Signed-off-by: Randy Dunlap <rdun...@infradead.org>
Cc: Li Yin <yin1...@intel.com>
Cc: Vadivel Murugan R <vadivel.muruganx.ramuthe...@linux.intel.com>
Cc: Kishon Vijay Abraham I <kis...@ti.com>
Cc: Vinod Koul <vk...@kernel.org>
---
 drivers/phy/Kconfig |    1 +
 1 file changed, 1 insertion(+)

--- linux-next-20200917.orig/drivers/phy/Kconfig
+++ linux-next-20200917/drivers/phy/Kconfig
@@ -51,6 +51,7 @@ config PHY_XGENE
 
 config USB_LGM_PHY
        tristate "INTEL Lightning Mountain USB PHY Driver"
+       depends on USB_SUPPORT
        select USB_PHY
        select REGULATOR
        select REGULATOR_FIXED_VOLTAGE

Reply via email to