1# SPDX-License-Identifier: GPL-2.0-only 2config CW1200 3 tristate "CW1200 WLAN support" 4 depends on MAC80211 && CFG80211 5 help 6 This is a driver for the ST-E CW1100 & CW1200 WLAN chipsets. 7 This option just enables the driver core, see below for 8 specific bus support. 9 10if CW1200 11 12config CW1200_WLAN_SDIO 13 tristate "Support SDIO platforms" 14 depends on CW1200 && MMC 15 help 16 Enable support for the CW1200 connected via an SDIO bus. 17 By default this driver only supports the Sagrad SG901-1091/1098 EVK 18 and similar designs that utilize a hardware reset circuit. To 19 support different CW1200 SDIO designs you will need to override 20 the default platform data by calling cw1200_sdio_set_platform_data() 21 in your board setup file. 22 23config CW1200_WLAN_SPI 24 tristate "Support SPI platforms" 25 depends on CW1200 && SPI 26 help 27 Enables support for the CW1200 connected via a SPI bus. You will 28 need to add appropriate platform data glue in your board setup 29 file. 30 31endif 32