Skip to content

Commit

Permalink
iwl3945 : Fix ad-hoc mode for 3945
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Abhijeet Kolekar authored and John W. Linville committed Nov 26, 2008
1 parent 0e149cf commit ce546fd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/net/wireless/iwlwifi/iwl3945-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -6321,10 +6321,7 @@ static void iwl3945_post_associate(struct iwl3945_priv *priv)

case NL80211_IFTYPE_ADHOC:

/* clear out the station table */
iwl3945_clear_stations_table(priv);

iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
priv->assoc_id = 1;
iwl3945_add_station(priv, priv->bssid, 0, 0);
iwl3945_sync_sta(priv, IWL_STA_ID,
(priv->band == IEEE80211_BAND_5GHZ) ?
Expand Down

0 comments on commit ce546fd

Please sign in to comment.