aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-06-09 12:53:58 -0400
committerJohn W. Linville <linville@tuxdriver.com>2013-06-12 15:06:53 -0400
commit693026ef2e751fd94d2e6c71028e68343cc875d5 (patch)
tree5266fb7e09818a0d7a5c1b5462c9881fc516cb76 /drivers/net/wireless/b43
parenta226c3d96d920ba88a28f463ba77c9693988ff1e (diff)
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>
Diffstat (limited to 'drivers/net/wireless/b43')
-rw-r--r--drivers/net/wireless/b43/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/b43/Kconfig b/drivers/net/wireless/b43/Kconfig
index 078e6f3477a9..13f91ac9499e 100644
--- a/drivers/net/wireless/b43/Kconfig
+++ b/drivers/net/wireless/b43/Kconfig
@@ -28,7 +28,7 @@ config B43
28 28
29config B43_BCMA 29config B43_BCMA
30 bool "Support for BCMA bus" 30 bool "Support for BCMA bus"
31 depends on B43 && BCMA 31 depends on B43 && (BCMA = y || BCMA = B43)
32 default y 32 default y
33 33
34config B43_BCMA_EXTRA 34config B43_BCMA_EXTRA
@@ -39,7 +39,7 @@ config B43_BCMA_EXTRA
39 39
40config B43_SSB 40config B43_SSB
41 bool 41 bool
42 depends on B43 && SSB 42 depends on B43 && (SSB = y || SSB = B43)
43 default y 43 default y
44 44
45# Auto-select SSB PCI-HOST support, if possible 45# Auto-select SSB PCI-HOST support, if possible