Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Mar 24-27, 2025, special US time zones
Register
Loading...
v6.8
 1# SPDX-License-Identifier: ISC
 2config ATH_COMMON
 3	tristate
 4
 5config WLAN_VENDOR_ATH
 6	bool "Atheros/Qualcomm devices"
 7	default y
 8	help
 9	  If you have a wireless card belonging to this class, say Y.
10
11	  Note that the answer to this question doesn't directly affect the
12	  kernel: saying N will just cause the configurator to skip all the
13	  questions about these cards. If you say Y, you will be asked for
14	  your specific card in the following questions.
15
16	  For more information and documentation on this module you can visit:
17
18	  https://wireless.wiki.kernel.org/en/users/Drivers/ath
19
20	  For information on all Atheros wireless drivers visit:
21
22	  https://wireless.wiki.kernel.org/en/users/Drivers/Atheros
23
24if WLAN_VENDOR_ATH
25
26config ATH_DEBUG
27	bool "Atheros wireless debugging"
28	help
29	  Say Y, if you want to debug atheros wireless drivers.
30	  Right now only ath9k makes use of this.
31
32config ATH_TRACEPOINTS
33	bool "Atheros wireless tracing"
34	depends on ATH_DEBUG
35	depends on EVENT_TRACING
36	help
37	  This option enables tracepoints for atheros wireless drivers.
38	  Currently, ath9k makes use of this facility.
39
40config ATH_REG_DYNAMIC_USER_REG_HINTS
41	bool "Atheros dynamic user regulatory hints"
42	depends on CFG80211_CERTIFICATION_ONUS
43	default n
44	help
45	  Say N. This should only be enabled in countries where
46	  this feature is explicitly allowed and only on cards that
47	  specifically have been tested for this.
48
49config ATH_REG_DYNAMIC_USER_CERT_TESTING
50	bool "Atheros dynamic user regulatory testing"
51	depends on ATH_REG_DYNAMIC_USER_REG_HINTS && CFG80211_CERTIFICATION_ONUS
52	default n
53	help
54	  Say N. This should only be enabled on systems
55	  undergoing certification testing.
56
57source "drivers/net/wireless/ath/ath5k/Kconfig"
58source "drivers/net/wireless/ath/ath9k/Kconfig"
59source "drivers/net/wireless/ath/carl9170/Kconfig"
60source "drivers/net/wireless/ath/ath6kl/Kconfig"
61source "drivers/net/wireless/ath/ar5523/Kconfig"
62source "drivers/net/wireless/ath/wil6210/Kconfig"
63source "drivers/net/wireless/ath/ath10k/Kconfig"
64source "drivers/net/wireless/ath/wcn36xx/Kconfig"
65source "drivers/net/wireless/ath/ath11k/Kconfig"
66source "drivers/net/wireless/ath/ath12k/Kconfig"
67
68endif
v4.17
 
 1config ATH_COMMON
 2	tristate
 3
 4config WLAN_VENDOR_ATH
 5	bool "Atheros/Qualcomm devices"
 6	default y
 7	---help---
 8	  If you have a wireless card belonging to this class, say Y.
 9
10	  Note that the answer to this question doesn't directly affect the
11	  kernel: saying N will just cause the configurator to skip all the
12	  questions about these cards. If you say Y, you will be asked for
13	  your specific card in the following questions.
14
15	  For more information and documentation on this module you can visit:
16
17	  http://wireless.kernel.org/en/users/Drivers/ath
18
19	  For information on all Atheros wireless drivers visit:
20
21	  http://wireless.kernel.org/en/users/Drivers/Atheros
22
23if WLAN_VENDOR_ATH
24
25config ATH_DEBUG
26	bool "Atheros wireless debugging"
27	---help---
28	  Say Y, if you want to debug atheros wireless drivers.
29	  Right now only ath9k makes use of this.
30
31config ATH_TRACEPOINTS
32       bool "Atheros wireless tracing"
33       depends on ATH_DEBUG
34       depends on EVENT_TRACING
35       ---help---
36         This option enables tracepoints for atheros wireless drivers.
37	 Currently, ath9k makes use of this facility.
38
39config ATH_REG_DYNAMIC_USER_REG_HINTS
40	bool "Atheros dynamic user regulatory hints"
41	depends on CFG80211_CERTIFICATION_ONUS
42	default n
43	---help---
44	  Say N. This should only be enabled in countries where
45	  this feature is explicitly allowed and only on cards that
46	  specifically have been tested for this.
47
48config ATH_REG_DYNAMIC_USER_CERT_TESTING
49	bool "Atheros dynamic user regulatory testing"
50	depends on ATH_REG_DYNAMIC_USER_REG_HINTS && CFG80211_CERTIFICATION_ONUS
51	default n
52	---help---
53	  Say N. This should only be enabled on systems
54	  undergoing certification testing.
55
56source "drivers/net/wireless/ath/ath5k/Kconfig"
57source "drivers/net/wireless/ath/ath9k/Kconfig"
58source "drivers/net/wireless/ath/carl9170/Kconfig"
59source "drivers/net/wireless/ath/ath6kl/Kconfig"
60source "drivers/net/wireless/ath/ar5523/Kconfig"
61source "drivers/net/wireless/ath/wil6210/Kconfig"
62source "drivers/net/wireless/ath/ath10k/Kconfig"
63source "drivers/net/wireless/ath/wcn36xx/Kconfig"
 
 
64
65endif