diff options
author | Samuel Ortiz <samuel.ortiz@intel.com> | 2009-01-23 16:45:17 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:36 -0500 |
commit | d08853a3995cfc2985307da7400fb57bfa5773e2 (patch) | |
tree | c346e9b3e9654b3a238827c49c59ffc64e37d78e /drivers/net/wireless/iwlwifi/Kconfig | |
parent | 534166dedaa9a660c7221b145b5e4088a2d9ac69 (diff) |
iwlwifi: Remove IWL3945_DEBUG
IWL3945_DEBUG is pointless and obsolete. We already have an IWLWIFI_DEBUG
symbol, that needs to be set if we actually want to get 3945 debug (see
iwl-debug.h).
Thus, we can simply get rid of this symbol.
Signed-off-by: Samuel Ortiz <samuel.ortiz@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/Kconfig')
-rw-r--r-- | drivers/net/wireless/iwlwifi/Kconfig | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/drivers/net/wireless/iwlwifi/Kconfig b/drivers/net/wireless/iwlwifi/Kconfig index f38130abab04..7b3bad1796c7 100644 --- a/drivers/net/wireless/iwlwifi/Kconfig +++ b/drivers/net/wireless/iwlwifi/Kconfig | |||
@@ -20,7 +20,7 @@ config IWLWIFI_RFKILL | |||
20 | depends on IWLCORE | 20 | depends on IWLCORE |
21 | 21 | ||
22 | config IWLWIFI_DEBUG | 22 | config IWLWIFI_DEBUG |
23 | bool "Enable full debugging output in iwlagn driver" | 23 | bool "Enable full debugging output in iwlagn and iwl3945 drivers" |
24 | depends on IWLCORE | 24 | depends on IWLCORE |
25 | ---help--- | 25 | ---help--- |
26 | This option will enable debug tracing output for the iwlwifi drivers | 26 | This option will enable debug tracing output for the iwlwifi drivers |
@@ -144,30 +144,3 @@ config IWL3945_LEDS | |||
144 | depends on IWL3945 | 144 | depends on IWL3945 |
145 | ---help--- | 145 | ---help--- |
146 | This option enables LEDS for the iwl3945 driver. | 146 | This option enables LEDS for the iwl3945 driver. |
147 | |||
148 | config IWL3945_DEBUG | ||
149 | bool "Enable full debugging output in iwl3945 driver" | ||
150 | depends on IWL3945 | ||
151 | ---help--- | ||
152 | This option will enable debug tracing output for the iwl3945 | ||
153 | driver. | ||
154 | |||
155 | This will result in the kernel module being ~100k larger. You can | ||
156 | control which debug output is sent to the kernel log by setting the | ||
157 | value in | ||
158 | |||
159 | /sys/bus/pci/drivers/${DRIVER}/debug_level | ||
160 | |||
161 | This entry will only exist if this option is enabled. | ||
162 | |||
163 | To set a value, simply echo an 8-byte hex value to the same file: | ||
164 | |||
165 | % echo 0x43fff > /sys/bus/pci/drivers/${DRIVER}/debug_level | ||
166 | |||
167 | You can find the list of debug mask values in: | ||
168 | drivers/net/wireless/iwlwifi/iwl-3945-debug.h | ||
169 | |||
170 | If this is your first time using this driver, you should say Y here | ||
171 | as the debug information can assist others in helping you resolve | ||
172 | any problems you may encounter. | ||
173 | |||