diff options
author | Mohamed Abbas <mohamed.abbas@intel.com> | 2009-05-22 14:01:50 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-05-22 14:06:05 -0400 |
commit | ef850d7cb301bda9155c096269557a4586b58071 (patch) | |
tree | e9dc0190a2a575a9515511043805fbdb73ac02e6 /drivers/net/wireless/iwlwifi/iwl-4965.c | |
parent | a2b0f02e4795bfde5f11720a10af8923cb98b654 (diff) |
iwlcore: support ICT interrupt
Add ICT interrupt handler support, ICT should improve CPU utilization
since it does not require target read which is very expensive. This
interrupt handler only added to 5000 cards and newer. Device will write
interrupts to ICT shared table to inform driver about its interrupts.
These patches will not touch 3945 and 4965 interrupt handlers and tasklet.
Signed-off-by: Mohamed Abbas <mohamed.abbas@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/iwl-4965.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index 7df41163ded..a0b29411a4b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c | |||
@@ -2286,6 +2286,7 @@ static struct iwl_lib_ops iwl4965_lib = { | |||
2286 | .update_chain_flags = iwl_update_chain_flags, | 2286 | .update_chain_flags = iwl_update_chain_flags, |
2287 | .post_associate = iwl_post_associate, | 2287 | .post_associate = iwl_post_associate, |
2288 | .config_ap = iwl_config_ap, | 2288 | .config_ap = iwl_config_ap, |
2289 | .isr = iwl_isr_legacy, | ||
2289 | .temp_ops = { | 2290 | .temp_ops = { |
2290 | .temperature = iwl4965_temperature_calib, | 2291 | .temperature = iwl4965_temperature_calib, |
2291 | .set_ct_kill = iwl4965_set_ct_threshold, | 2292 | .set_ct_kill = iwl4965_set_ct_threshold, |
@@ -2310,6 +2311,7 @@ struct iwl_cfg iwl4965_agn_cfg = { | |||
2310 | .eeprom_calib_ver = EEPROM_4965_TX_POWER_VERSION, | 2311 | .eeprom_calib_ver = EEPROM_4965_TX_POWER_VERSION, |
2311 | .ops = &iwl4965_ops, | 2312 | .ops = &iwl4965_ops, |
2312 | .mod_params = &iwl4965_mod_params, | 2313 | .mod_params = &iwl4965_mod_params, |
2314 | .use_isr_legacy = true | ||
2313 | }; | 2315 | }; |
2314 | 2316 | ||
2315 | /* Module firmware */ | 2317 | /* Module firmware */ |