ssb: relax SSB_EMBEDDED dependencies
authorRandy Dunlap <rdunlap@infradead.org>
Thu, 12 Oct 2023 22:08:55 +0000 (15:08 -0700)
committerKalle Valo <kvalo@kernel.org>
Thu, 19 Oct 2023 07:26:26 +0000 (10:26 +0300)
This is a kconfig warning in a randconfig when CONFIG_PCI is not set:

WARNING: unmet direct dependencies detected for SSB_EMBEDDED
  Depends on [n]: SSB [=y] && SSB_DRIVER_MIPS [=y] && SSB_PCICORE_HOSTMODE [=n]
  Selected by [y]:
  - BCM47XX_SSB [=y] && BCM47XX [=y]

This is caused by arch/mips/bcm47xx/Kconfig's symbol BCM47XX_SSB
selecting SSB_EMBEDDED when CONFIG_PCI is not set.

This warning can be prevented by altering SSB_EMBEDDED to allow for
PCI=n or the former SSB_PCICORE_HOSTMODE.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Acked-by: Michael Büsch <m@bues.ch>
Cc: linux-wireless@vger.kernel.org
Cc: Kalle Valo <kvalo@kernel.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20231012220856.23260-1-rdunlap@infradead.org
drivers/ssb/Kconfig

index 34fa19d4b3f1cf070c93b6f0aa81021e870967db..1cf1a98952fa0045fbb2510eefaee494a819084e 100644 (file)
@@ -134,7 +134,8 @@ config SSB_SFLASH
 # Assumption: We are on embedded, if we compile the MIPS core.
 config SSB_EMBEDDED
        bool
-       depends on SSB_DRIVER_MIPS && SSB_PCICORE_HOSTMODE
+       depends on SSB_DRIVER_MIPS
+       depends on PCI=n || SSB_PCICORE_HOSTMODE
        default y
 
 config SSB_DRIVER_EXTIF