diff options
author | Zhu Yi <yi.zhu@intel.com> | 2009-05-21 09:20:45 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-05-22 14:06:02 -0400 |
commit | bb9f8692f5043efef0dcef048cdd1db68299c2cb (patch) | |
tree | de0eade3ea6e40341727789a3a91e5c506b68759 /drivers/net/wireless/iwmc3200wifi/Kconfig | |
parent | e31a16d6f64ef0e324c6f54d5112703c3f13a9c4 (diff) |
iwmc3200wifi: Add new Intel Wireless Multicomm 802.11 driver
This driver supports Intel's full MAC wireless multicomm 802.11 hardware.
Although the hardware is a 802.11agn device, we currently only support
802.11ag, in managed and ad-hoc mode (no AP mode for now).
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: Samuel Ortiz <samuel.ortiz@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwmc3200wifi/Kconfig')
-rw-r--r-- | drivers/net/wireless/iwmc3200wifi/Kconfig | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwmc3200wifi/Kconfig b/drivers/net/wireless/iwmc3200wifi/Kconfig new file mode 100644 index 000000000000..ae84ddabcc1c --- /dev/null +++ b/drivers/net/wireless/iwmc3200wifi/Kconfig | |||
@@ -0,0 +1,23 @@ | |||
1 | config IWM | ||
2 | tristate "Intel Wireless Multicomm 3200 WiFi driver" | ||
3 | depends on MMC && WLAN_80211 && EXPERIMENTAL | ||
4 | select LIB80211 | ||
5 | select FW_LOADER | ||
6 | select RFKILL | ||
7 | |||
8 | config IWM_DEBUG | ||
9 | bool "Enable full debugging output in iwmc3200wifi" | ||
10 | depends on IWM && DEBUG_FS | ||
11 | ---help--- | ||
12 | This option will enable debug tracing and setting for iwm | ||
13 | |||
14 | You can set the debug level and module through debugfs. By | ||
15 | default all modules are set to the IWL_DL_ERR level. | ||
16 | To see the list of debug modules and levels, see iwm/debug.h | ||
17 | |||
18 | For example, if you want the full MLME debug output: | ||
19 | echo 0xff > /debug/iwm/phyN/debug/mlme | ||
20 | |||
21 | Or, if you want the full debug, for all modules: | ||
22 | echo 0xff > /debug/iwm/phyN/debug/level | ||
23 | echo 0xff > /debug/iwm/phyN/debug/modules | ||