Linux Audio

Check our new training course

Linux kernel drivers training

Mar 31-Apr 9, 2025, special US time zones
Register
Loading...
v6.8
 1# SPDX-License-Identifier: GPL-2.0-only
 2config WLAN_VENDOR_TI
 3	bool "Texas Instrument devices"
 4	default y
 5	help
 6	  If you have a wireless card belonging to this class, say Y.
 7
 8	  Note that the answer to this question doesn't directly affect the
 9	  kernel: saying N will just cause the configurator to skip all the
10	  questions about these cards. If you say Y, you will be asked for
11	  your specific card in the following questions.
12
13if WLAN_VENDOR_TI
14source "drivers/net/wireless/ti/wl1251/Kconfig"
15source "drivers/net/wireless/ti/wl12xx/Kconfig"
16source "drivers/net/wireless/ti/wl18xx/Kconfig"
17
18# keep last for automatic dependencies
19source "drivers/net/wireless/ti/wlcore/Kconfig"
20
21endif # WLAN_VENDOR_TI
 
 
 
 
 
 
 
 
v3.15
 1menuconfig WL_TI
 2	bool "TI Wireless LAN support"
 3	---help---
 4	  This section contains support for all the wireless drivers
 5	  for Texas Instruments WLAN chips, such as wl1251 and the wl12xx
 6	  family.
 
 
 
 
 
 7
 8if WL_TI
 9source "drivers/net/wireless/ti/wl1251/Kconfig"
10source "drivers/net/wireless/ti/wl12xx/Kconfig"
11source "drivers/net/wireless/ti/wl18xx/Kconfig"
12
13# keep last for automatic dependencies
14source "drivers/net/wireless/ti/wlcore/Kconfig"
15
16config WILINK_PLATFORM_DATA
17	bool "TI WiLink platform data"
18	depends on WLCORE_SDIO || WL1251_SDIO
19	default y
20	---help---
21	Small platform data bit needed to pass data to the sdio modules.
22
23
24endif # WL_TI