diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-sta.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-sta.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-sta.c b/drivers/net/wireless/iwlwifi/iwl-sta.c index 842f1565323..fcac73cf82b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-sta.c +++ b/drivers/net/wireless/iwlwifi/iwl-sta.c | |||
@@ -1127,6 +1127,7 @@ static void iwl_sta_init_bcast_lq(struct iwl_priv *priv) | |||
1127 | */ | 1127 | */ |
1128 | void iwl_add_bcast_station(struct iwl_priv *priv) | 1128 | void iwl_add_bcast_station(struct iwl_priv *priv) |
1129 | { | 1129 | { |
1130 | IWL_DEBUG_INFO(priv, "Adding broadcast station to station table\n"); | ||
1130 | iwl_add_station(priv, iwl_bcast_addr, false, CMD_SYNC, NULL); | 1131 | iwl_add_station(priv, iwl_bcast_addr, false, CMD_SYNC, NULL); |
1131 | 1132 | ||
1132 | /* Set up default rate scaling table in device's station table */ | 1133 | /* Set up default rate scaling table in device's station table */ |
@@ -1135,6 +1136,16 @@ void iwl_add_bcast_station(struct iwl_priv *priv) | |||
1135 | EXPORT_SYMBOL(iwl_add_bcast_station); | 1136 | EXPORT_SYMBOL(iwl_add_bcast_station); |
1136 | 1137 | ||
1137 | /** | 1138 | /** |
1139 | * iwl3945_add_bcast_station - add broadcast station into station table. | ||
1140 | */ | ||
1141 | void iwl3945_add_bcast_station(struct iwl_priv *priv) | ||
1142 | { | ||
1143 | IWL_DEBUG_INFO(priv, "Adding broadcast station to station table\n"); | ||
1144 | iwl_add_station(priv, iwl_bcast_addr, false, CMD_SYNC, NULL); | ||
1145 | } | ||
1146 | EXPORT_SYMBOL(iwl3945_add_bcast_station); | ||
1147 | |||
1148 | /** | ||
1138 | * iwl_get_sta_id - Find station's index within station table | 1149 | * iwl_get_sta_id - Find station's index within station table |
1139 | * | 1150 | * |
1140 | * If new IBSS station, create new entry in station table | 1151 | * If new IBSS station, create new entry in station table |