diff options
author | Abhijeet Kolekar <abhijeet.kolekar@intel.com> | 2008-11-19 18:32:22 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-26 09:47:36 -0500 |
commit | ce546fd2eacdbd8dc15f3d2ffd9a95661d082919 (patch) | |
tree | c5c116dbec4c2abf565b58c40a97c7c95bc1e103 /drivers/net/wireless/iwlwifi/iwl3945-base.c | |
parent | 0e149cf5a1b1900484f4b808d59a5f246cd720be (diff) |
iwl3945 : Fix ad-hoc mode for 3945
Patch fixes the ad-hoc mode by
1) Removing redundant clear_stations_table which prevented generation of
beacons.
2) Setting assoc_id to 1. It was never set so preventing tx flow
in iwl3945_tx_skb.
Signed-off-by: Abhijeet Kolekar <abhijeet.kolekar@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/iwl3945-base.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl3945-base.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 9330dfaff132..69fda64c6503 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -6321,10 +6321,7 @@ static void iwl3945_post_associate(struct iwl3945_priv *priv) | |||
6321 | 6321 | ||
6322 | case NL80211_IFTYPE_ADHOC: | 6322 | case NL80211_IFTYPE_ADHOC: |
6323 | 6323 | ||
6324 | /* clear out the station table */ | 6324 | priv->assoc_id = 1; |
6325 | iwl3945_clear_stations_table(priv); | ||
6326 | |||
6327 | iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0); | ||
6328 | iwl3945_add_station(priv, priv->bssid, 0, 0); | 6325 | iwl3945_add_station(priv, priv->bssid, 0, 0); |
6329 | iwl3945_sync_sta(priv, IWL_STA_ID, | 6326 | iwl3945_sync_sta(priv, IWL_STA_ID, |
6330 | (priv->band == IEEE80211_BAND_5GHZ) ? | 6327 | (priv->band == IEEE80211_BAND_5GHZ) ? |