diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-04-30 14:30:49 -0400 |
---|---|---|
committer | Reinette Chatre <reinette.chatre@intel.com> | 2010-05-10 18:09:07 -0400 |
commit | 57f8db89340f6ba5d913a1950b8dad4431d2beda (patch) | |
tree | 5a22b6173ae8b507be6f6e2f64441f75cfd5aacd /drivers/net/wireless/iwlwifi/iwl-sta.c | |
parent | c1182743b688bce7b0bbd7cff78b049e45672cb5 (diff) |
iwlwifi: rename iwl_add_local_station
This function is now only used for the special
IBSS BSSID station, so rename it to indicate
this. The new name is iwl_add_bssid_station.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-sta.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-sta.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-sta.c b/drivers/net/wireless/iwlwifi/iwl-sta.c index ba36df5e2c78..c15098ed0416 100644 --- a/drivers/net/wireless/iwlwifi/iwl-sta.c +++ b/drivers/net/wireless/iwlwifi/iwl-sta.c | |||
@@ -417,14 +417,11 @@ static struct iwl_link_quality_cmd *iwl_sta_alloc_lq(struct iwl_priv *priv, | |||
417 | } | 417 | } |
418 | 418 | ||
419 | /* | 419 | /* |
420 | * iwl_add_local_station - Add stations not requested by mac80211 | 420 | * iwl_add_bssid_station - Add the special IBSS BSSID station |
421 | * | ||
422 | * This will be either the broadcast station or the bssid station needed by | ||
423 | * ad-hoc. | ||
424 | * | 421 | * |
425 | * Function sleeps. | 422 | * Function sleeps. |
426 | */ | 423 | */ |
427 | int iwl_add_local_station(struct iwl_priv *priv, const u8 *addr, bool init_rs, | 424 | int iwl_add_bssid_station(struct iwl_priv *priv, const u8 *addr, bool init_rs, |
428 | u8 *sta_id_r) | 425 | u8 *sta_id_r) |
429 | { | 426 | { |
430 | int ret; | 427 | int ret; |
@@ -468,7 +465,7 @@ int iwl_add_local_station(struct iwl_priv *priv, const u8 *addr, bool init_rs, | |||
468 | 465 | ||
469 | return 0; | 466 | return 0; |
470 | } | 467 | } |
471 | EXPORT_SYMBOL(iwl_add_local_station); | 468 | EXPORT_SYMBOL(iwl_add_bssid_station); |
472 | 469 | ||
473 | /** | 470 | /** |
474 | * iwl_sta_ucode_deactivate - deactivate ucode status for a station | 471 | * iwl_sta_ucode_deactivate - deactivate ucode status for a station |