Kconfig 947 B

12345678910111213141516171819202122232425262728293031
  1. menuconfig ATH_COMMON
  2. tristate "Atheros Wireless Cards"
  3. depends on CFG80211 && (!UML || BROKEN)
  4. ---help---
  5. This will enable the support for the Atheros wireless drivers.
  6. ath5k, ath9k, ath9k_htc and ar9170 drivers share some common code, this option
  7. enables the common ath.ko module which shares common helpers.
  8. For more information and documentation on this module you can visit:
  9. http://wireless.kernel.org/en/users/Drivers/ath
  10. For information on all Atheros wireless drivers visit:
  11. http://wireless.kernel.org/en/users/Drivers/Atheros
  12. if ATH_COMMON
  13. config ATH_DEBUG
  14. bool "Atheros wireless debugging"
  15. ---help---
  16. Say Y, if you want to debug atheros wireless drivers.
  17. Right now only ath9k makes use of this.
  18. source "drivers/net/wireless/ath/ath5k/Kconfig"
  19. source "drivers/net/wireless/ath/ath9k/Kconfig"
  20. source "drivers/net/wireless/ath/carl9170/Kconfig"
  21. source "drivers/net/wireless/ath/ath6kl/Kconfig"
  22. endif