mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
3a5fe2fb96
When BCM47XX_BCMA is enabled and BCMA_DRIVER_PCI is disabled, it results
in the following Kbuild warning:
WARNING: unmet direct dependencies detected for BCMA_DRIVER_PCI_HOSTMODE
Depends on [n]: MIPS [=y] && BCMA_DRIVER_PCI [=n] && PCI_DRIVERS_LEGACY [=y] && BCMA [=y]=y
Selected by [y]:
- BCM47XX_BCMA [=y] && BCM47XX [=y] && PCI [=y]
The reason is that BCM47XX_BCMA selects BCMA_DRIVER_PCI_HOSTMODE without
depending on or selecting BCMA_DRIVER_PCI while BCMA_DRIVER_PCI_HOSTMODE
depends on BCMA_DRIVER_PCI. This can also fail building the kernel.
Honor the kconfig dependency to remove unmet direct dependency warnings
and avoid any potential build failures.
Fixes:
|
||
---|---|---|
.. | ||
bcm47xx_private.h | ||
board.c | ||
buttons.c | ||
irq.c | ||
Kconfig | ||
leds.c | ||
Makefile | ||
Platform | ||
prom.c | ||
serial.c | ||
setup.c | ||
time.c | ||
workarounds.c |