Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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_TRACEPOINTS
  21. bool "Atheros wireless tracing"
  22. depends on ATH_DEBUG
  23. depends on EVENT_TRACING
  24. ---help---
  25. This option enables tracepoints for atheros wireless drivers.
  26. Currently, ath9k makes use of this facility.
  27. config ATH_REG_DYNAMIC_USER_REG_HINTS
  28. bool "Atheros dynamic user regulatory hints"
  29. depends on CFG80211_CERTIFICATION_ONUS
  30. default n
  31. ---help---
  32. Say N. This should only be enabled in countries where
  33. this feature is explicitly allowed and only on cards that
  34. specifically have been tested for this.
  35. config ATH_REG_DYNAMIC_USER_CERT_TESTING
  36. bool "Atheros dynamic user regulatory testing"
  37. depends on ATH_REG_DYNAMIC_USER_REG_HINTS && CFG80211_CERTIFICATION_ONUS
  38. default n
  39. ---help---
  40. Say N. This should only be enabled on systems
  41. undergoing certification testing.
  42. source "drivers/net/wireless/ath/ath5k/Kconfig"
  43. source "drivers/net/wireless/ath/ath9k/Kconfig"
  44. source "drivers/net/wireless/ath/carl9170/Kconfig"
  45. source "drivers/net/wireless/ath/ath6kl/Kconfig"
  46. source "drivers/net/wireless/ath/ar5523/Kconfig"
  47. source "drivers/net/wireless/ath/wil6210/Kconfig"
  48. source "drivers/net/wireless/ath/ath10k/Kconfig"
  49. source "drivers/net/wireless/ath/wcn36xx/Kconfig"
  50. endif