diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-12-04 14:33:40 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:58:26 -0500 |
commit | 03bffc1341c757e4b15a5a6058ad624e28b4801e (patch) | |
tree | 769d5f7f4028ab57bc9d9ddae23415a9f19e1ef6 /drivers/net/wireless/b43legacy | |
parent | 374fdfbc67837c1f4369eedb0f371ce3e6cce832 (diff) |
wireless: make drivers include the TSF RX flag where appropriate
These drivers pass full mactime information to the stack, make them
indicate this via the new RX_FLAG_TSFT to get mac80211 to show this
information in monitor mode.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/b43legacy')
-rw-r--r-- | drivers/net/wireless/b43legacy/xmit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43legacy/xmit.c b/drivers/net/wireless/b43legacy/xmit.c index fa1e65687a63..b71cc949f7d4 100644 --- a/drivers/net/wireless/b43legacy/xmit.c +++ b/drivers/net/wireless/b43legacy/xmit.c | |||
@@ -532,6 +532,7 @@ void b43legacy_rx(struct b43legacy_wldev *dev, | |||
532 | status.rate = b43legacy_plcp_get_bitrate_cck(plcp); | 532 | status.rate = b43legacy_plcp_get_bitrate_cck(plcp); |
533 | status.antenna = !!(phystat0 & B43legacy_RX_PHYST0_ANT); | 533 | status.antenna = !!(phystat0 & B43legacy_RX_PHYST0_ANT); |
534 | status.mactime = mactime; | 534 | status.mactime = mactime; |
535 | status.flag |= RX_FLAG_TSFT; | ||
535 | 536 | ||
536 | chanid = (chanstat & B43legacy_RX_CHAN_ID) >> | 537 | chanid = (chanstat & B43legacy_RX_CHAN_ID) >> |
537 | B43legacy_RX_CHAN_ID_SHIFT; | 538 | B43legacy_RX_CHAN_ID_SHIFT; |