Kconfig 903 B

123456789101112131415161718192021222324252627282930
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config 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. Note that the answer to this question doesn't directly affect the
  8. kernel: saying N will just cause the configurator to skip all the
  9. questions about these cards. If you say Y, you will be asked for
  10. your specific card in the following questions.
  11. if WLAN_VENDOR_TI
  12. source "drivers/net/wireless/ti/wl1251/Kconfig"
  13. source "drivers/net/wireless/ti/wl12xx/Kconfig"
  14. source "drivers/net/wireless/ti/wl18xx/Kconfig"
  15. # keep last for automatic dependencies
  16. source "drivers/net/wireless/ti/wlcore/Kconfig"
  17. config WILINK_PLATFORM_DATA
  18. bool "TI WiLink platform data"
  19. depends on WLCORE_SDIO || WL1251_SDIO
  20. default y
  21. ---help---
  22. Small platform data bit needed to pass data to the sdio modules.
  23. endif # WLAN_VENDOR_TI