-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
staging: brcm80211: Make compiling of brcm80211.ko and brcmfmac.ko mu…
…tually exclusive. Temporary fix until utils get cleaned up. Signed-off-by: Henry Ptasinski <henryp@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Henry Ptasinski
authored and
Greg Kroah-Hartman
committed
Sep 27, 2010
1 parent
76a3cca
commit 6afd119
Showing
2 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,33 @@ | ||
menuconfig BRCM80211 | ||
tristate "Broadcom 802.11 WLAN driver for bcm43xx chips" | ||
depends on PCI && WLAN | ||
select WIRELESS_EXT | ||
select WEXT_PRIV | ||
default N | ||
tristate "Broadcom IEEE802.11n WLAN drivers" | ||
depends on WLAN | ||
|
||
choice | ||
prompt "Broadcom IEEE802.11n driver style" | ||
depends on BRCM80211 | ||
help | ||
If built as a module, it will be called brcm80211.ko. | ||
Select the appropriate driver style from the list below. | ||
|
||
config BRCM80211_PCI | ||
bool "Broadcom 802.11 WLAN NIC driver" | ||
depends on BRCM80211 | ||
default y | ||
bool "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver" | ||
depends on PCI | ||
depends on BRCM80211 && MAC80211 | ||
select FW_LOADER | ||
---help--- | ||
This module adds support for PCIe wireless adapters based on Broadcom | ||
IEEE802.11n SoftMAC chipsets. If you choose to build a module, it'll | ||
be called brcm80211.ko. | ||
|
||
source "drivers/staging/brcm80211/brcmfmac/Kconfig" | ||
config BRCMFMAC | ||
bool "Broadcom IEEE802.11n embedded FullMAC WLAN driver" | ||
depends on MMC | ||
depends on BRCM80211 && CFG80211 | ||
select FW_LOADER | ||
select WIRELESS_EXT | ||
select WEXT_PRIV | ||
---help--- | ||
This module adds support for embedded wireless adapters based on | ||
Broadcom IEEE802.11n FullMAC chipsets. This driver uses the kernel's | ||
wireless extensions subsystem. If you choose to build a module, | ||
it'll be called brcmfmac.ko. | ||
endchoice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters