Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

b43: ensue that BCMA is "y" when B43 is "y"

When b43 gets build into the kernel and it should use bcma we have to
ensure that bcma was also build into the kernel and not as a module.
In this patch this is also done for SSB, although you can not
build b43 without ssb support for now.

This fixes a build problem reported by Randy Dunlap in
5187EB95.2060605@infradead.org

Reported-By: Randy Dunlap <rdunlap@infradead.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Hauke Mehrtens and committed by
John W. Linville
693026ef a226c3d9

+2 -2
+2 -2
drivers/net/wireless/b43/Kconfig
··· 28 28 29 29 config B43_BCMA 30 30 bool "Support for BCMA bus" 31 - depends on B43 && BCMA 31 + depends on B43 && (BCMA = y || BCMA = B43) 32 32 default y 33 33 34 34 config B43_BCMA_EXTRA ··· 39 39 40 40 config B43_SSB 41 41 bool 42 - depends on B43 && SSB 42 + depends on B43 && (SSB = y || SSB = B43) 43 43 default y 44 44 45 45 # Auto-select SSB PCI-HOST support, if possible