mirror of
https://github.com/torvalds/linux.git
synced 2024-12-23 19:31:53 +00:00
a9a11622c5
Finally! This is what you've all been waiting for! This patch makes cfg80211 take care of wext emulation _completely_ by itself, drivers that don't need things cfg80211 doesn't do yet don't even need to be aware of wireless extensions. This means we can also clean up mac80211's and iwm's Kconfig and make it possible to build them w/o wext now! RIP wext. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
config IWM
|
|
tristate "Intel Wireless Multicomm 3200 WiFi driver"
|
|
depends on MMC && WLAN_80211 && EXPERIMENTAL
|
|
depends on CFG80211
|
|
select FW_LOADER
|
|
help
|
|
The Intel Wireless Multicomm 3200 hardware is a combo
|
|
card with GPS, Bluetooth, WiMax and 802.11 radios. It
|
|
runs over SDIO and is typically found on Moorestown
|
|
based platform. This driver takes care of the 802.11
|
|
part, which is a fullmac one.
|
|
|
|
If you choose to build it as a module, it'll be called
|
|
iwmc3200wifi.ko.
|
|
|
|
config IWM_DEBUG
|
|
bool "Enable full debugging output in iwmc3200wifi"
|
|
depends on IWM && DEBUG_FS
|
|
---help---
|
|
This option will enable debug tracing and setting for iwm
|
|
|
|
You can set the debug level and module through debugfs. By
|
|
default all modules are set to the IWL_DL_ERR level.
|
|
To see the list of debug modules and levels, see iwm/debug.h
|
|
|
|
For example, if you want the full MLME debug output:
|
|
echo 0xff > /debug/iwm/phyN/debug/mlme
|
|
|
|
Or, if you want the full debug, for all modules:
|
|
echo 0xff > /debug/iwm/phyN/debug/level
|
|
echo 0xff > /debug/iwm/phyN/debug/modules
|