aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorZhu Yi <yi.zhu@intel.com>2007-09-26 23:27:35 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:53:22 -0400
commitc14c521e440a6a83835a2879a4c5f4311b1df68f (patch)
treeea3f020b02d2e04f515698fa6b5d1427a618f32a /drivers
parent46640a8ccebee34bd16b1af672feaa7dc320f3f6 (diff)
[PATCH] iwlwifi: fix add_station to avoid FW error
There were a few Firmware errors reported the most reproducible http://bughost.org/bugzilla/show_bug.cgi?id=1471 The root cause is rate_n_flags isn't set anymore. This patch fixes the problem. Signed-off-by: Ian Schram <ischram@telenet.be> Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl3945-base.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c
index dacf55ba0b7b..d153ca5f9573 100644
--- a/drivers/net/wireless/iwlwifi/iwl3945-base.c
+++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c
@@ -464,6 +464,7 @@ u8 iwl_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
464 struct iwl_station_entry *station; 464 struct iwl_station_entry *station;
465 unsigned long flags_spin; 465 unsigned long flags_spin;
466 DECLARE_MAC_BUF(mac); 466 DECLARE_MAC_BUF(mac);
467 u8 rate;
467 468
468 spin_lock_irqsave(&priv->sta_lock, flags_spin); 469 spin_lock_irqsave(&priv->sta_lock, flags_spin);
469 if (is_ap) 470 if (is_ap)
@@ -507,6 +508,15 @@ u8 iwl_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
507 station->sta.sta.sta_id = index; 508 station->sta.sta.sta_id = index;
508 station->sta.station_flags = 0; 509 station->sta.station_flags = 0;
509 510
511 rate = (priv->phymode == MODE_IEEE80211A) ? IWL_RATE_6M_PLCP :
512 IWL_RATE_1M_PLCP | priv->hw_setting.cck_flag;
513
514 /* Turn on both antennas for the station... */
515 station->sta.rate_n_flags =
516 iwl_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
517 station->current_rate.rate_n_flags =
518 le16_to_cpu(station->sta.rate_n_flags);
519
510 spin_unlock_irqrestore(&priv->sta_lock, flags_spin); 520 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
511 iwl_send_add_station(priv, &station->sta, flags); 521 iwl_send_add_station(priv, &station->sta, flags);
512 return index; 522 return index;