mirror of
https://github.com/torvalds/linux.git
synced 2024-12-21 02:21:36 +00:00
f72ae31e6f
This patch adds a Kconfig option for SDIO bus support and abstracts a build subset correspondingly. It's the final patch of fullmac bus interface refactoring. Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Reviewed-by: Arend van Spriel <arend@broadcom.com> Reviewed-by: Alwin Beukers <alwin@broadcom.com> Signed-off-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
config BRCMUTIL
|
|
tristate
|
|
|
|
config BRCMSMAC
|
|
tristate "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver"
|
|
depends on MAC80211
|
|
depends on BCMA
|
|
select BRCMUTIL
|
|
select FW_LOADER
|
|
select CRC_CCITT
|
|
select CRC8
|
|
select CORDIC
|
|
---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 brcmsmac.ko.
|
|
|
|
config BRCMFMAC
|
|
tristate "Broadcom IEEE802.11n embedded FullMAC WLAN driver"
|
|
depends on CFG80211
|
|
select BRCMUTIL
|
|
---help---
|
|
This module adds support for embedded wireless adapters based on
|
|
Broadcom IEEE802.11n FullMAC chipsets. It has to work with at least
|
|
one of the bus interface support. If you choose to build a module,
|
|
it'll be called brcmfmac.ko.
|
|
|
|
config BRCMFMAC_SDIO
|
|
bool "SDIO bus interface support for FullMAC"
|
|
depends on MMC
|
|
depends on BRCMFMAC
|
|
select FW_LOADER
|
|
default y
|
|
---help---
|
|
This option enables the SDIO bus interface support for Broadcom
|
|
FullMAC WLAN driver.
|
|
Say Y if you want to use brcmfmac for a compatible SDIO interface
|
|
wireless card.
|
|
|
|
config BRCMDBG
|
|
bool "Broadcom driver debug functions"
|
|
depends on BRCMSMAC || BRCMFMAC
|
|
---help---
|
|
Selecting this enables additional code for debug purposes.
|