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-3945-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-3945-rs.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-3945-rs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945-rs.h b/drivers/net/wireless/iwlwifi/iwl-3945-rs.h index e88b1d31f56f..f085d330bdcf 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945-rs.h +++ b/drivers/net/wireless/iwlwifi/iwl-3945-rs.h | |||
@@ -202,7 +202,7 @@ extern void iwl3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id); | |||
202 | * ieee80211_register_hw | 202 | * ieee80211_register_hw |
203 | * | 203 | * |
204 | */ | 204 | */ |
205 | extern void iwl3945_rate_control_register(struct ieee80211_hw *hw); | 205 | extern int iwl3945_rate_control_register(void); |
206 | 206 | ||
207 | /** | 207 | /** |
208 | * iwl3945_rate_control_unregister - Unregister the rate control callbacks | 208 | * iwl3945_rate_control_unregister - Unregister the rate control callbacks |
@@ -210,6 +210,6 @@ extern void iwl3945_rate_control_register(struct ieee80211_hw *hw); | |||
210 | * This should be called after calling ieee80211_unregister_hw, but before | 210 | * This should be called after calling ieee80211_unregister_hw, but before |
211 | * the driver is unloaded. | 211 | * the driver is unloaded. |
212 | */ | 212 | */ |
213 | extern void iwl3945_rate_control_unregister(struct ieee80211_hw *hw); | 213 | extern void iwl3945_rate_control_unregister(void); |
214 | 214 | ||
215 | #endif | 215 | #endif |