staging: brcm80211: Remove symbol CONFIG_BRCM80211
Since the staging driver brcm80211 was renamed to brcmsmac, CONFIG_BRCM80211 is not really needed. In addition, a two-entry list hardly needs a separate config menu. The only awkward place in the revised code is the double addition of the brcm80211 Makefile. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2657c30e23
commit
57d745ea6b
2 changed files with 9 additions and 10 deletions
|
@ -16,7 +16,8 @@ obj-$(CONFIG_USB_IP_COMMON) += usbip/
|
||||||
obj-$(CONFIG_W35UND) += winbond/
|
obj-$(CONFIG_W35UND) += winbond/
|
||||||
obj-$(CONFIG_PRISM2_USB) += wlan-ng/
|
obj-$(CONFIG_PRISM2_USB) += wlan-ng/
|
||||||
obj-$(CONFIG_ECHO) += echo/
|
obj-$(CONFIG_ECHO) += echo/
|
||||||
obj-$(CONFIG_BRCM80211) += brcm80211/
|
obj-$(CONFIG_BRCMSMAC) += brcm80211/
|
||||||
|
obj-$(CONFIG_BRCMFMAC) += brcm80211/
|
||||||
obj-$(CONFIG_RT2860) += rt2860/
|
obj-$(CONFIG_RT2860) += rt2860/
|
||||||
obj-$(CONFIG_RT2870) += rt2870/
|
obj-$(CONFIG_RT2870) += rt2870/
|
||||||
obj-$(CONFIG_COMEDI) += comedi/
|
obj-$(CONFIG_COMEDI) += comedi/
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
menuconfig BRCM80211
|
|
||||||
tristate "Broadcom IEEE802.11n WLAN drivers"
|
|
||||||
depends on WLAN
|
|
||||||
|
|
||||||
config BRCMSMAC
|
config BRCMSMAC
|
||||||
bool "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver"
|
tristate "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver"
|
||||||
|
default n
|
||||||
depends on PCI
|
depends on PCI
|
||||||
depends on BRCM80211 && MAC80211
|
depends on WLAN && MAC80211
|
||||||
select FW_LOADER
|
select FW_LOADER
|
||||||
---help---
|
---help---
|
||||||
This module adds support for PCIe wireless adapters based on Broadcom
|
This module adds support for PCIe wireless adapters based on Broadcom
|
||||||
|
@ -13,9 +10,10 @@ config BRCMSMAC
|
||||||
be called brcmsmac.ko.
|
be called brcmsmac.ko.
|
||||||
|
|
||||||
config BRCMFMAC
|
config BRCMFMAC
|
||||||
bool "Broadcom IEEE802.11n embedded FullMAC WLAN driver"
|
tristate "Broadcom IEEE802.11n embedded FullMAC WLAN driver"
|
||||||
|
default n
|
||||||
depends on MMC
|
depends on MMC
|
||||||
depends on BRCM80211 && CFG80211
|
depends on WLAN && CFG80211
|
||||||
select FW_LOADER
|
select FW_LOADER
|
||||||
select WIRELESS_EXT
|
select WIRELESS_EXT
|
||||||
select WEXT_PRIV
|
select WEXT_PRIV
|
||||||
|
@ -28,6 +26,6 @@ config BRCMFMAC
|
||||||
config BRCMDBG
|
config BRCMDBG
|
||||||
bool "Broadcom driver debug functions"
|
bool "Broadcom driver debug functions"
|
||||||
default n
|
default n
|
||||||
depends on BRCM80211
|
depends on BRCMSMAC || BRCMFMAC
|
||||||
---help---
|
---help---
|
||||||
Selecting this enables additional code for debug purposes.
|
Selecting this enables additional code for debug purposes.
|
||||||
|
|
Loading…
Add table
Reference in a new issue