aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-rx.c
diff options
context:
space:
mode:
authorAssaf Krauss <assaf.krauss@intel.com>2008-06-30 05:23:17 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-06-30 17:37:42 -0400
commit2ff75b7877c40b1917f23cc5fafccaf3c1ab4745 (patch)
tree1b15ff798d6b54ff0c2d6861cc846e09e7aacf23 /drivers/net/wireless/iwlwifi/iwl-rx.c
parent4faeb86070c38c0df9f5a23c3f6acf5538492a33 (diff)
iwlwifi: adjust TSF in IBSS
This patch makes the driver, in IBSS mode, comply with TSF requirements in 2 ways: 1. It notifies mac80211 of its TSF timestamp. 2. It uses the given timestamp in the beacon template to update the ucode. Signed-off-by: Assaf Krauss <assaf.krauss@intel.com> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-rx.c')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-rx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-rx.c b/drivers/net/wireless/iwlwifi/iwl-rx.c
index bfe1ad262484..0c734fd529ac 100644
--- a/drivers/net/wireless/iwlwifi/iwl-rx.c
+++ b/drivers/net/wireless/iwlwifi/iwl-rx.c
@@ -1063,7 +1063,6 @@ static void iwl_pass_packet_to_mac80211(struct iwl_priv *priv,
1063 return; 1063 return;
1064 } 1064 }
1065 1065
1066 stats->flag = 0;
1067 hdr = (struct ieee80211_hdr *)rxb->skb->data; 1066 hdr = (struct ieee80211_hdr *)rxb->skb->data;
1068 1067
1069 /* in case of HW accelerated crypto and bad decryption, drop */ 1068 /* in case of HW accelerated crypto and bad decryption, drop */
@@ -1197,6 +1196,7 @@ void iwl_rx_reply_rx(struct iwl_priv *priv,
1197 1196
1198 rx_status.antenna = 0; 1197 rx_status.antenna = 0;
1199 rx_status.flag = 0; 1198 rx_status.flag = 0;
1199 rx_status.flag |= RX_FLAG_TSFT;
1200 1200
1201 if ((unlikely(rx_start->cfg_phy_cnt > 20))) { 1201 if ((unlikely(rx_start->cfg_phy_cnt > 20))) {
1202 IWL_DEBUG_DROP("dsp size out of range [0,20]: %d/n", 1202 IWL_DEBUG_DROP("dsp size out of range [0,20]: %d/n",