mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04:00
Commit4b478bf6bd("wifi: libertas: drop 16-bit PCMCIA support") reworks the dependencies for config LIBERTAS, and adds alternative dependencies for USB, SDIO and SPI. The config option SDIO however does not exist in the kernel tree. It was probably intended to refer to the config option MMC, which represents "MMC/SD/SDIO card support" and is used as dependency by various other drivers that use SDIO. Fix the dependency to the config option MMC for declaring the requirement on provision of SDIO support. Fixes:4b478bf6bd("wifi: libertas: drop 16-bit PCMCIA support") Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20231122083047.12774-1-lukas.bulwahn@gmail.com
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config LIBERTAS
|
|
tristate "Marvell 8xxx Libertas WLAN driver support"
|
|
depends on USB || MMC || SPI
|
|
depends on CFG80211
|
|
select LIB80211
|
|
select FW_LOADER
|
|
help
|
|
A library for Marvell Libertas 8xxx devices.
|
|
|
|
config LIBERTAS_USB
|
|
tristate "Marvell Libertas 8388 USB 802.11b/g cards"
|
|
depends on LIBERTAS && USB
|
|
help
|
|
A driver for Marvell Libertas 8388 USB devices.
|
|
|
|
config LIBERTAS_SDIO
|
|
tristate "Marvell Libertas 8385/8686/8688 SDIO 802.11b/g cards"
|
|
depends on LIBERTAS && MMC
|
|
help
|
|
A driver for Marvell Libertas 8385/8686/8688 SDIO devices.
|
|
|
|
config LIBERTAS_SPI
|
|
tristate "Marvell Libertas 8686 SPI 802.11b/g cards"
|
|
depends on LIBERTAS && SPI
|
|
help
|
|
A driver for Marvell Libertas 8686 SPI devices.
|
|
|
|
config LIBERTAS_DEBUG
|
|
bool "Enable full debugging output in the Libertas module."
|
|
depends on LIBERTAS
|
|
help
|
|
Debugging support.
|
|
|
|
config LIBERTAS_MESH
|
|
bool "Enable mesh support"
|
|
depends on LIBERTAS
|
|
help
|
|
This enables Libertas' MESH support, used by e.g. the OLPC people.
|