diff options
Diffstat (limited to 'net/mac80211/Kconfig')
-rw-r--r-- | net/mac80211/Kconfig | 37 |
1 files changed, 16 insertions, 21 deletions
diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig index 7836ee928983..9db4ff836a3d 100644 --- a/net/mac80211/Kconfig +++ b/net/mac80211/Kconfig | |||
@@ -6,7 +6,6 @@ config MAC80211 | |||
6 | select CRYPTO_ARC4 | 6 | select CRYPTO_ARC4 |
7 | select CRYPTO_AES | 7 | select CRYPTO_AES |
8 | select CRC32 | 8 | select CRC32 |
9 | select WIRELESS_EXT | ||
10 | ---help--- | 9 | ---help--- |
11 | This option enables the hardware independent IEEE 802.11 | 10 | This option enables the hardware independent IEEE 802.11 |
12 | networking stack. | 11 | networking stack. |
@@ -14,22 +13,6 @@ config MAC80211 | |||
14 | comment "CFG80211 needs to be enabled for MAC80211" | 13 | comment "CFG80211 needs to be enabled for MAC80211" |
15 | depends on CFG80211=n | 14 | depends on CFG80211=n |
16 | 15 | ||
17 | config MAC80211_DEFAULT_PS | ||
18 | bool "enable powersave by default" | ||
19 | depends on MAC80211 | ||
20 | default y | ||
21 | help | ||
22 | This option enables powersave mode by default. | ||
23 | |||
24 | If this causes your applications to misbehave you should fix your | ||
25 | applications instead -- they need to register their network | ||
26 | latency requirement, see Documentation/power/pm_qos_interface.txt. | ||
27 | |||
28 | config MAC80211_DEFAULT_PS_VALUE | ||
29 | int | ||
30 | default 1 if MAC80211_DEFAULT_PS | ||
31 | default 0 | ||
32 | |||
33 | menu "Rate control algorithm selection" | 16 | menu "Rate control algorithm selection" |
34 | depends on MAC80211 != n | 17 | depends on MAC80211 != n |
35 | 18 | ||
@@ -83,12 +66,12 @@ endmenu | |||
83 | config MAC80211_MESH | 66 | config MAC80211_MESH |
84 | bool "Enable mac80211 mesh networking (pre-802.11s) support" | 67 | bool "Enable mac80211 mesh networking (pre-802.11s) support" |
85 | depends on MAC80211 && EXPERIMENTAL | 68 | depends on MAC80211 && EXPERIMENTAL |
86 | depends on BROKEN | ||
87 | ---help--- | 69 | ---help--- |
88 | This options enables support of Draft 802.11s mesh networking. | 70 | This options enables support of Draft 802.11s mesh networking. |
89 | The implementation is based on Draft 1.08 of the Mesh Networking | 71 | The implementation is based on Draft 2.08 of the Mesh Networking |
90 | amendment. For more information visit http://o11s.org/. | 72 | amendment. However, no compliance with that draft is claimed or even |
91 | 73 | possible, as drafts leave a number of identifiers to be defined after | |
74 | ratification. For more information visit http://o11s.org/. | ||
92 | 75 | ||
93 | config MAC80211_LEDS | 76 | config MAC80211_LEDS |
94 | bool "Enable LED triggers" | 77 | bool "Enable LED triggers" |
@@ -222,3 +205,15 @@ config MAC80211_DEBUG_COUNTERS | |||
222 | and show them in debugfs. | 205 | and show them in debugfs. |
223 | 206 | ||
224 | If unsure, say N. | 207 | If unsure, say N. |
208 | |||
209 | config MAC80211_DRIVER_API_TRACER | ||
210 | bool "Driver API tracer" | ||
211 | depends on MAC80211_DEBUG_MENU | ||
212 | depends on EVENT_TRACING | ||
213 | help | ||
214 | Say Y here to make mac80211 register with the ftrace | ||
215 | framework for the driver API -- you can see which | ||
216 | driver methods it is calling then by looking at the | ||
217 | trace. | ||
218 | |||
219 | If unsure, say N. | ||