diff options
author | Reinette Chatre <reinette.chatre@intel.com> | 2008-03-28 19:21:09 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-04-01 17:13:19 -0400 |
commit | 897e1cf29e05e3373bf380a417d085cd3389a3c0 (patch) | |
tree | 8e60c677284c649ebcfaabf727da1ec607adba7c /drivers/net/wireless/iwlwifi/iwl-4965-rs.h | |
parent | 0359facc7b7a37fd1223ac60649c80cd8daeaf73 (diff) |
iwlwifi: move rate registration to module load
Having rate registration during module load enables the use of
error checking as well as reliable registration/unregistration
pairing. Previously this was not possible as rate registration
was done during _probe where _probe could be run for more than
one device on the system.
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-4965-rs.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965-rs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965-rs.h b/drivers/net/wireless/iwlwifi/iwl-4965-rs.h index ae827e1fb0fb..866e378aa385 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965-rs.h +++ b/drivers/net/wireless/iwlwifi/iwl-4965-rs.h | |||
@@ -288,7 +288,7 @@ extern void iwl4965_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id); | |||
288 | * ieee80211_register_hw | 288 | * ieee80211_register_hw |
289 | * | 289 | * |
290 | */ | 290 | */ |
291 | extern void iwl4965_rate_control_register(struct ieee80211_hw *hw); | 291 | extern int iwl4965_rate_control_register(void); |
292 | 292 | ||
293 | /** | 293 | /** |
294 | * iwl4965_rate_control_unregister - Unregister the rate control callbacks | 294 | * iwl4965_rate_control_unregister - Unregister the rate control callbacks |
@@ -296,6 +296,6 @@ extern void iwl4965_rate_control_register(struct ieee80211_hw *hw); | |||
296 | * This should be called after calling ieee80211_unregister_hw, but before | 296 | * This should be called after calling ieee80211_unregister_hw, but before |
297 | * the driver is unloaded. | 297 | * the driver is unloaded. |
298 | */ | 298 | */ |
299 | extern void iwl4965_rate_control_unregister(struct ieee80211_hw *hw); | 299 | extern void iwl4965_rate_control_unregister(void); |
300 | 300 | ||
301 | #endif | 301 | #endif |