diff options
author | Zhu Yi <yi.zhu@intel.com> | 2006-08-20 23:39:03 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-08-29 17:06:34 -0400 |
commit | 094c4d2df6c17a37d9e1b88601990ab660c00c3e (patch) | |
tree | 3c414a9e08f2b94484409655d47d00be28d140cd /drivers/net/wireless/ipw2200.h | |
parent | efbd809829001c94e48b96337ea05a16d5ecee85 (diff) |
[PATCH] ipw2200: enable wireless extension passive scan
This patch enables the ipw2200 driver to support passive scanning as
offered by the wireless extensions. For this, I enhanced the ipw_wx_set_scan
function in such a way that it differentiates between a passive and an
active scan request. Additionally, I added a new function called
ipw_request_passive_scan that is similiar to the ipw_request_scan
function to perform passive scans. Last but not least, I added a field
(in fact it is a work_struct struct) called request_passive_scan to
the ipw_priv struct.
Signed-off-by: Thomas King <king@informatik.uni-mannheim.de>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ipw2200.h')
-rw-r--r-- | drivers/net/wireless/ipw2200.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ipw2200.h b/drivers/net/wireless/ipw2200.h index a1df67f3ede8..dad5eedefbf1 100644 --- a/drivers/net/wireless/ipw2200.h +++ b/drivers/net/wireless/ipw2200.h | |||
@@ -1296,6 +1296,7 @@ struct ipw_priv { | |||
1296 | struct work_struct system_config; | 1296 | struct work_struct system_config; |
1297 | struct work_struct rx_replenish; | 1297 | struct work_struct rx_replenish; |
1298 | struct work_struct request_scan; | 1298 | struct work_struct request_scan; |
1299 | struct work_struct request_passive_scan; | ||
1299 | struct work_struct adapter_restart; | 1300 | struct work_struct adapter_restart; |
1300 | struct work_struct rf_kill; | 1301 | struct work_struct rf_kill; |
1301 | struct work_struct up; | 1302 | struct work_struct up; |