diff options
| author | Chun-Yeow Yeoh <yeohchunyeow@gmail.com> | 2014-02-26 18:42:05 +0200 |
|---|---|---|
| committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-02-27 18:37:05 +0200 |
| commit | e72698f8a95f16ca764b62b609c50e3423e2a584 (patch) | |
| tree | 43cafe6822ab56cce95fcbf89502482b02f24e75 /drivers/net/wireless/ath/ath10k/htt_rx.c | |
| parent | 76f900244f084ae684c282f7aac938419d6afb2e (diff) | |
| download | talos-op-linux-e72698f8a95f16ca764b62b609c50e3423e2a584.tar.gz talos-op-linux-e72698f8a95f16ca764b62b609c50e3423e2a584.zip | |
ath10k: set the mactime of ieee80211_rx_status
Retrieve the mactime of ieee80211_rx_status based on received
data frame. The value is obtained from the htt_rx_indication_ppdu
structure and only available in 32-bit.
kvalo: white space fixes
Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/htt_rx.c')
| -rw-r--r-- | drivers/net/wireless/ath/ath10k/htt_rx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath10k/htt_rx.c b/drivers/net/wireless/ath/ath10k/htt_rx.c index 040a85418599..fcd00f639e13 100644 --- a/drivers/net/wireless/ath/ath10k/htt_rx.c +++ b/drivers/net/wireless/ath/ath10k/htt_rx.c @@ -996,6 +996,7 @@ static void ath10k_htt_rx_handler(struct ath10k_htt *htt, info.rate.info0 = rx->ppdu.info0; info.rate.info1 = __le32_to_cpu(rx->ppdu.info1); info.rate.info2 = __le32_to_cpu(rx->ppdu.info2); + info.tsf = __le32_to_cpu(rx->ppdu.tsf); hdr = ath10k_htt_rx_skb_get_hdr(msdu_head); |

