Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. config ATH_COMMON
  2. tristate
  3. menuconfig ATH_CARDS
  4. tristate "Atheros Wireless Cards"
  5. depends on CFG80211 && (!UML || BROKEN)
  6. ---help---
  7. This will enable the support for the Atheros wireless drivers.
  8. ath5k, ath9k, ath9k_htc and ar9170 drivers share some common code, this option
  9. enables the common ath.ko module which shares common helpers.
  10. For more information and documentation on this module you can visit:
  11. http://wireless.kernel.org/en/users/Drivers/ath
  12. For information on all Atheros wireless drivers visit:
  13. http://wireless.kernel.org/en/users/Drivers/Atheros
  14. if ATH_CARDS
  15. config ATH_DEBUG
  16. bool "Atheros wireless debugging"
  17. ---help---
  18. Say Y, if you want to debug atheros wireless drivers.
  19. Right now only ath9k makes use of this.
  20. config ATH_REG_DYNAMIC_USER_REG_HINTS
  21. bool "Atheros dynamic user regulatory hints"
  22. depends on CFG80211_CERTIFICATION_ONUS
  23. default n
  24. ---help---
  25. Say N. This should only be enabled in countries where
  26. this feature is explicitly allowed and only on cards that
  27. specifically have been tested for this.
  28. config ATH_REG_DYNAMIC_USER_CERT_TESTING
  29. bool "Atheros dynamic user regulatory testing"
  30. depends on ATH_REG_DYNAMIC_USER_REG_HINTS && CFG80211_CERTIFICATION_ONUS
  31. default n
  32. ---help---
  33. Say N. This should only be enabled on systems
  34. undergoing certification testing.
  35. source "drivers/net/wireless/ath/ath5k/Kconfig"
  36. source "drivers/net/wireless/ath/ath9k/Kconfig"
  37. source "drivers/net/wireless/ath/carl9170/Kconfig"
  38. source "drivers/net/wireless/ath/ath6kl/Kconfig"
  39. source "drivers/net/wireless/ath/ar5523/Kconfig"
  40. source "drivers/net/wireless/ath/wil6210/Kconfig"
  41. source "drivers/net/wireless/ath/ath10k/Kconfig"
  42. source "drivers/net/wireless/ath/wcn36xx/Kconfig"
  43. endif